From 2682bc5d1d864341aaeb42a449db73c3ecd16d70 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Wed, 30 Dec 2020 19:07:31 +0000 Subject: Initial import --- tools/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tools/Makefile (limited to 'tools/Makefile') diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 0000000..6223252 --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,17 @@ +BIN=../bin/hex2bin ../bin/rasm + +all: $(BIN) + +../bin/hex2bin: + mkdir -p hex2bin-2.0/bin + make -C hex2bin-2.0 + cp hex2bin-2.0/bin/hex2bin ../bin + make -C hex2bin-2.0 cleanall + +../bin/rasm: + make -C rasm + +.PHONY: all clean +clean: + make -C hex2bin-2.0 cleanall + make -C rasm clean -- cgit v1.2.3