mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2024-11-26 02:40:59 +02:00
11 lines
214 B
Makefile
11 lines
214 B
Makefile
TOPTARGETS := all clean
|
|
|
|
NOWANTS=common/. text_kerning/.
|
|
SUBDIRS := $(filter-out $(NOWANTS), $(wildcard */.))
|
|
|
|
$(TOPTARGETS): $(SUBDIRS)
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|
|
|
|
.PHONY: $(TOPTARGETS) $(SUBDIRS)
|