From 2c3be1a110218ddcd04f95ebf45607f0450463a5 Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Tue, 18 May 2021 11:46:19 +1000 Subject: [PATCH] make source dependencies work --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3c1f61a..7e3b604 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,7 @@ 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 +rrqforth: rrqforth.asm $(INCS) fasm $< -s $@.fas ./fas2txt.lsp $@.fas > $@.map chmod a+x $@ -- 2.39.2