nix-snes-templates/with-asar/Makefile

19 lines
283 B
Makefile
Raw Permalink Normal View History

2022-04-27 22:19:52 -04:00
# This makefile is largely pointless, but it allows
# for easier manipulation of the build process, so
# it's worth adding in.
2022-04-27 22:07:42 -04:00
ASM=asar
ASMFLAGS=
VPATH=src
.PHONY: all
2022-05-01 12:16:53 -04:00
all: main.sfc
2022-04-27 22:07:42 -04:00
2022-05-01 12:16:53 -04:00
main.sfc: main.asm
2022-04-27 22:07:42 -04:00
$(ASM) $(ASMFLAGS) $^ $@
# Clean directory
.PHONY: clean
clean:
2022-05-01 12:16:53 -04:00
rm main.sfc