aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 65030d316601b07c13b30e16b9f3947ff43da530 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)