From: Mark Wooding Date: Sun, 14 Nov 2021 13:48:11 +0000 (+0000) Subject: Makefile: Add a cheesy makefile. X-Git-Url: https://git.distorted.org.uk/~mdw/zx-fizzbuzz/commitdiff_plain/f97b241f1bf18496ca48191aa509abb796f76267?ds=sidebyside Makefile: Add a cheesy makefile. --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a89285e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.img diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..eeaf9d2 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +### -*-makefile-*- + +all: +clean:: + +TARGETS = +CLEANFILES = $(TARGETS) + +TARGETS += spectrum-fb.img +spectrum-fb.img: fizzbuzz.s + z80asm -o $@ $^ + +all: $(TARGETS) + +clean::; rm -f $(CLEANFILES)