INCS := $(shell grep ^include rrqforth.asm | tr -d "'" | sed 's/include//' ) SRCS = rrqforth.asm $(INCS) # compile into 3 things: binary, symbolic information and debug support rrqforth: rrqforth.asm fasm $< -s $@.fas ./fas2txt.lsp $@.fas > $@.map chmod a+x $@ clean: rm -f rrqforth{,.fas,.map}