Updates the instructions on how to build.

This commit is contained in:
John Schneiderman 2024-08-08 20:34:19 +02:00
parent 092592a05b
commit d67980d79f
2 changed files with 14 additions and 3 deletions

View File

@ -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

View File

@ -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