Makefile: Add a cheesy makefile.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 14 Nov 2021 13:48:11 +0000 (13:48 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 14 Nov 2021 13:59:08 +0000 (13:59 +0000)
.gitignore [new file with mode: 0644]
Makefile [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..a89285e
--- /dev/null
@@ -0,0 +1 @@
+*.img
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)