From 6637ef371082d88c45952f1094df709ea988b7b4 Mon Sep 17 00:00:00 2001 From: sadbeast Date: Thu, 1 Feb 2024 16:11:53 -0800 Subject: initial mistake --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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) -- cgit v1.2.3