X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=Makefile;h=7e3b60456bfff45338cf5024f087551a81d4b0dc;hb=2f357c67f0323aafe05e997053b180e6e79d8ea0;hp=ffb97c70d4453c898a0b564d4129a90073974d7e;hpb=f3bc3b97f37dd7bc012c152374d4185c734b3a7e;p=rrq%2Frrqforth.git diff --git a/Makefile b/Makefile index ffb97c7..7e3b604 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ 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 +rrqforth: rrqforth.asm $(INCS) + fasm $< -s $@.fas + ./fas2txt.lsp $@.fas > $@.map chmod a+x $@ - ./symbols.lsp $@.fas > $@.dbg + clean: - rm -f rrqforth{,.fas,.dbg} + rm -f rrqforth{,.fas,.map}