summaryrefslogtreecommitdiff
path: root/make_tools.mk
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2021-06-13 17:51:17 -0400
committerGitHub <noreply@github.com>2021-06-13 17:51:17 -0400
commitb0dfaa92be48b4dc88af0c1502689fcad7da99ea (patch)
tree5b60e917fc89f39426fd54babfcb0dd5c12822c2 /make_tools.mk
parentf85fb3af8923b7dce601591dede2d3bee0729d1e (diff)
parent7189e4e26f3da36ed9d373f77a9f51a36fc8ddaf (diff)
Merge pull request #1460 from luckytyphlosion/remove-temps
Buildsystem no longer builds temporary files for C compilation by default, and other makefile optimizations.
Diffstat (limited to 'make_tools.mk')
-rw-r--r--make_tools.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/make_tools.mk b/make_tools.mk
new file mode 100644
index 000000000..697897a69
--- /dev/null
+++ b/make_tools.mk
@@ -0,0 +1,11 @@
+
+MAKEFLAGS += --no-print-directory
+
+TOOLDIRS := $(filter-out tools/agbcc tools/binutils,$(wildcard tools/*))
+
+.PHONY: all $(TOOLDIRS)
+
+all: $(TOOLDIRS)
+
+$(TOOLDIRS):
+ @$(MAKE) -C $@