From 2fbdf974338bde8576efdae40a819a76b2391033 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Sun, 5 Nov 2023 11:22:55 +0000 Subject: Initial import of the open source release --- lib/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lib/Makefile (limited to 'lib/Makefile') diff --git a/lib/Makefile b/lib/Makefile new file mode 100644 index 0000000..a8bf391 --- /dev/null +++ b/lib/Makefile @@ -0,0 +1,21 @@ +all: aplib.lib cpcrslib.lib plw.lib + +AS=sdasz80 +AR=sdar + +aplib.lib: aplib.z80 + $(AS) -o $< + $(AR) -rcD $@ aplib.rel + +cpcrslib.lib: $(wildcard cpcrslib/*.s) + make -C cpcrslib + +plw.lib: $(wildcard plw/*.z80) + make -C plw + +.PHONY: clean +clean: + rm -f *.rel *.lib + make -C cpcrslib clean + make -C plw clean + -- cgit v1.2.3