From f97b241f1bf18496ca48191aa509abb796f76267 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 14 Nov 2021 13:48:11 +0000 Subject: [PATCH] Makefile: Add a cheesy makefile. --- .gitignore | 1 + Makefile | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .gitignore create mode 100644 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) -- 2.11.0