Makefile: Add a cheesy makefile.
[zx-fizzbuzz] / Makefile
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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)