aboutsummaryrefslogtreecommitdiff
path: root/sdcc/Makefile
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2021-04-17 22:05:24 +0100
committerJuan J. Martinez <jjm@usebox.net>2021-04-17 22:05:24 +0100
commita5745813e442b66ae6eed30bba81d1b3dd5cf634 (patch)
treeb302db1780350dc44543b81d49bfc1b2d4dff6a8 /sdcc/Makefile
downloadbeeper-int-zx-a5745813e442b66ae6eed30bba81d1b3dd5cf634.tar.gz
beeper-int-zx-a5745813e442b66ae6eed30bba81d1b3dd5cf634.zip
Initial public release
Diffstat (limited to 'sdcc/Makefile')
-rw-r--r--sdcc/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/sdcc/Makefile b/sdcc/Makefile
new file mode 100644
index 0000000..3445ca7
--- /dev/null
+++ b/sdcc/Makefile
@@ -0,0 +1,13 @@
+all: beeper.lib
+
+AS=sdasz80
+AR=sdar
+
+beeper.lib: beeper.z80
+ $(AS) -o $<
+ $(AR) -rcD $@ beeper.rel
+
+.PHONY: clean
+clean:
+ rm -f *.rel *.bin *.lib
+