aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2023-12-12 20:03:06 +0100
committerMiquel Sabaté Solà <msabate@suse.com>2023-12-12 20:03:17 +0100
commit63897b552fc0d0a2544a547318017485ed220c67 (patch)
tree2cc609226ce0a557012b061c65091750f2520c4c /Makefile
parent46103595c072651ade490c48c417f5d8d7ba9327 (diff)
downloadaoc2023.nes-63897b552fc0d0a2544a547318017485ed220c67.tar.gz
aoc2023.nes-63897b552fc0d0a2544a547318017485ed220c67.zip
Implemented day 3
Note that only part 1 has been implemented. The reasoning is on the file header. Moreover, we are not printing 24-bit results yet because that would entail modifying the somewhat terrifying vendor code on `vendor/bcd16.s`. Since this will be a recurring theme, I guess that I will have to come up with a solution sooner or later. Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0784337..be38f1a 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ CCOPTS += -g -Ln out/labels.txt
endif
QUIET = @echo ' ' CC65 $@;
-SOURCES = $(shell find src/ -type f -name '*.s' -printf "%f\n")
+SOURCES = $(shell find src/ -type f -name '*.s' -printf "%f\n" | sort)
ROMS = $(SOURCES:%.s=out/%.nes)
.PHONY: all