This commit is contained in:
2025-10-10 22:16:15 -04:00
parent 33175e2c19
commit 5709c50700
3 changed files with 17 additions and 33 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)/%)