12 lines
182 B
Makefile
12 lines
182 B
Makefile
|
|
||
|
MAKEFLAGS += --no-print-directory
|
||
|
|
||
|
TOOLDIRS := $(filter-out tools/agbcc tools/binutils,$(wildcard tools/*))
|
||
|
|
||
|
.PHONY: all $(TOOLDIRS)
|
||
|
|
||
|
all: $(TOOLDIRS)
|
||
|
|
||
|
$(TOOLDIRS):
|
||
|
@$(MAKE) -C $@
|