aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorsadbeast <sadbeast@sadbeast.com>2024-02-01 16:11:53 -0800
committersadbeast <sadbeast@sadbeast.com>2025-01-11 17:58:17 -0800
commit6637ef371082d88c45952f1094df709ea988b7b4 (patch)
tree99a8de3d0402a0dc7d6b972a6c47258871cfab57 /Makefile
downloadanxiety-6637ef371082d88c45952f1094df709ea988b7b4.tar.gz
anxiety-6637ef371082d88c45952f1094df709ea988b7b4.tar.bz2
initial mistakeHEADmain
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..65030d3
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+ASM = ez80asm -l -b 00
+
+NAME = anxiety
+BINARY = $(NAME).bin
+DEPS = mos_api.inc times12.uf2
+
+SD_PATH = ~/.local/share/fab-agon-emulator/sdcard/bin
+
+all: $(BINARY)
+
+$(BINARY): $(NAME).asm $(DEPS)
+ $(ASM) $<
+
+clean:
+ rm -f $(BINARY) *.lst
+
+install: $(BINARY)
+ cp $(BINARY) $(SD_PATH)