don't rebuild the image unless doing make all

FossilOrigin-Name: 461d5fb1412f24a3f5b5d8ea712bff4744c9a7bab59d00248920252cb798e21d
This commit is contained in:
crc 2017-11-08 11:36:28 +00:00
parent 55fb5ecf42
commit 27792aa76e
2 changed files with 12 additions and 0 deletions

View file

@ -1,6 +1,8 @@
LIBS = -lm
OPTS = -Wall -O3
default: clean finally
all: clean first then image finally
clean:

10
doc/Building.md Normal file
View file

@ -0,0 +1,10 @@
# Building RETRO
To rebuild the core binaries, a simple `make` should suffice. This will
leave you with `bin/rre` and `bin/repl`, as well as the `bin/listener`
(wrapper for rre).
If you make changes to the image sources (in `literate`) or to
`interfaces/rre.forth`, you'll need to do a full build
(toolchain + image + interfaces). This can be done by issuing a
`make all` command.