X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=Makefile;h=b60f0c77cee7707739eb67aac7a78bfdff517c67;hb=049b46403225479942bd680fa27f30e5523c88db;hp=012248adc33017fad4b886d323cc4fd043c8c3ef;hpb=b404f29caf2f82acc9fc4cd84e7247857878f7a8;p=rrq%2Frrqforth.git diff --git a/Makefile b/Makefile index 012248a..b60f0c7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,15 @@ -BINARY = rrqforth +INCS := $(shell grep ^include rrqforth.asm | tr -d "'" | sed 's/include//' ) -rrqforth: main.fasm - fasm $^ $@ +# compile into 3 things: binary, symbolic information and debug support +rrqforth: rrqforth.asm $(INCS) + fasm $< -s $@.fas + ./fas2txt.lsp $@.fas > $@.map + chmod a+x $@ +clean: + rm -f rrqforth{,.fas,.map} + +DOCS := reference.adoc wordindex.adoc $( shell adoc/*.adoc ) + +reference.html: $(DOCS) + asciidoc -bhtml ${@:.html=.adoc} > $@