External include files

This commit is contained in:
2025-10-12 21:29:22 -04:00
parent 33175e2c19
commit 510c21ae4e
4 changed files with 52 additions and 36 deletions

View File

@@ -1,6 +1,7 @@
.PHONY: all clean
SRC := $(wildcard *.asm)
SRC := $(filter-out functions.asm, $(SRC))
OBJDIR := build
OBJS := $(SRC:%.asm=$(OBJDIR)/%.o)
BINS := $(SRC:%.asm=$(OBJDIR)/%)