aboutsummaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2021-05-03 08:21:10 +0100
committerJuan J. Martinez <jjm@usebox.net>2021-05-03 10:00:00 +0100
commitc3b0fa04a663fe233765b83d3be41a42aa08c25d (patch)
tree0befda349001ef6ce306b39378f9c70ad917363e /tools/Makefile
downloadreturn-of-traxtor-cpc-c3b0fa04a663fe233765b83d3be41a42aa08c25d.tar.gz
return-of-traxtor-cpc-c3b0fa04a663fe233765b83d3be41a42aa08c25d.zip
Initial import for public releaseHEADmain
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile
new file mode 100644
index 0000000..fa59614
--- /dev/null
+++ b/tools/Makefile
@@ -0,0 +1,38 @@
+BIN=idsk 2cdt ucl png2crtc hex2bin
+
+all: $(BIN)
+CC=gcc
+CFLAGS=-s -O3 -Wall
+
+idsk:
+ mkdir iDSK/build
+ cd iDSK/build && cmake ../
+ make -C iDSK/build
+ cp iDSK/build/iDSK idsk
+ rm -rf iDSK/build
+
+2cdt:
+ make -C 2CDT
+ cp 2CDT/2cdt .
+
+png2crtc:
+ make -C gfx2crtc
+ cp gfx2crtc/png2crtc .
+
+%.o: %.c
+ $(CC) $(CFLAGS) $< -o $@ -c
+
+ucl: ucl.o
+ $(CC) -lucl $< -o $@
+
+hex2bin:
+ make -C hex2bin-2.0
+ cp hex2bin-2.0/bin/hex2bin .
+
+.PHONY: clean
+clean:
+ make -C 2CDT clean
+ make -C gfx2crtc clean
+ make -C hex2bin-2.0 clean
+ rm -f $(BIN) *.o
+