From f3e040230772f978540a71aea43dfde200992922 Mon Sep 17 00:00:00 2001 From: "John Wilbert M. Villamor" Date: Sat, 6 Apr 2019 10:11:07 +0800 Subject: First commit --- tools/makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tools/makefile (limited to 'tools/makefile') diff --git a/tools/makefile b/tools/makefile new file mode 100644 index 0000000..aec452c --- /dev/null +++ b/tools/makefile @@ -0,0 +1,12 @@ +TOPTARGETS = all install clean + +TOOLDIRS = lzpack smxlink util + +$(TOPTARGETS): $(TOOLDIRS) +$(TOOLDIRS): + $(MAKE) -C $@ $(MAKECMDGOALS) + +clean: $(LIBDIRS) + rm -Rf bin + +.PHONY: $(TOPTARGETS) $(TOOLDIRS) -- cgit v1.2.3