From 10c94911649a7f75c19627436dc74fb830ae1335 Mon Sep 17 00:00:00 2001 From: Gale Faraday Date: Thu, 28 Nov 2024 11:17:23 -0600 Subject: [PATCH] fix: now tracking incs in makefile. --- code/boot/makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/boot/makefile b/code/boot/makefile index 1b5b85f..e7f03d3 100644 --- a/code/boot/makefile +++ b/code/boot/makefile @@ -12,6 +12,7 @@ TARGET := boot.bin SRCDIR := src/ MAINSRC := $(SRCDIR)boot.s SRCS := $(wildcard $(SRCDIR)*.s) +INCS := $(wildcard $(SRCDIR)*.inc) # ------------------------------------------------------------------------------ # Toolchain Definitions @@ -25,7 +26,7 @@ AS := asm6809 all: $(TARGET) -$(TARGET): $(SRCS) +$(TARGET): $(SRCS) $(INCS) $(AS) -o $(TARGET) $(MAINSRC) clean: