diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-06-13 17:51:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-13 17:51:17 -0400 |
commit | b0dfaa92be48b4dc88af0c1502689fcad7da99ea (patch) | |
tree | 5b60e917fc89f39426fd54babfcb0dd5c12822c2 /make_tools.mk | |
parent | f85fb3af8923b7dce601591dede2d3bee0729d1e (diff) | |
parent | 7189e4e26f3da36ed9d373f77a9f51a36fc8ddaf (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.mk | 11 |
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 $@ |