X-Git-Url: https://git.distorted.org.uk/~mdw/zx-fizzbuzz/blobdiff_plain/a221d644f4371212a32875ed05fa6dfafb31e51e..f97b241f1bf18496ca48191aa509abb796f76267:/Makefile 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)