Updates the instructions on how to build.
This commit is contained in:
parent
092592a05b
commit
d67980d79f
13
README.md
13
README.md
|
@ -86,7 +86,18 @@ You should build from a subdirectory of Oscar64 so that references in the makefi
|
||||||
|
|
||||||
* mkdir build
|
* mkdir build
|
||||||
* cd build
|
* cd build
|
||||||
* make -f ../make/makefile
|
|
||||||
|
To build just the compiler:
|
||||||
|
|
||||||
|
* make -f ../make/makefile compiler
|
||||||
|
|
||||||
|
To build just game demonstrations:
|
||||||
|
|
||||||
|
* make -f ../make/makefile samples
|
||||||
|
|
||||||
|
To build everything:
|
||||||
|
|
||||||
|
* make -f ../make/makefile all
|
||||||
|
|
||||||
### Compiler arguments
|
### Compiler arguments
|
||||||
|
|
||||||
|
|
|
@ -119,5 +119,5 @@ endif
|
||||||
|
|
||||||
|
|
||||||
--prep-build-dir:
|
--prep-build-dir:
|
||||||
@if [[ ! -d $(srcdir) ]]; then mkdir --parents $(srcdir); fi
|
@if [[ ! -d $(srcdir) ]]; then $(MKDIR_PARENT) $(srcdir); fi
|
||||||
@if [[ ! -d $(project_dir)/bin ]]; then mkdir --parents $(project_dir)/bin; fi
|
@if [[ ! -d $(project_dir)/bin ]]; then $(MKDIR_PARENT) $(project_dir)/bin; fi
|
||||||
|
|
Loading…
Reference in New Issue