INCS := $(shell grep ^include rrqforth.asm | tr -d "'" | sed 's/include//' ) # 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 echo adoc/*.adoc ) reference.html: $(DOCS) asciidoc -bhtml ${@:.html=.adoc} > $@