don't rebuild the image unless doing make all
FossilOrigin-Name: 461d5fb1412f24a3f5b5d8ea712bff4744c9a7bab59d00248920252cb798e21d
This commit is contained in:
parent
55fb5ecf42
commit
27792aa76e
2 changed files with 12 additions and 0 deletions
2
Makefile
2
Makefile
|
@ -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
10
doc/Building.md
Normal 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.
|
Loading…
Reference in a new issue