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: