mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
10 lines
181 B
Makefile
10 lines
181 B
Makefile
SUBFOLDERS := sept-primary sept-secondary
|
|
|
|
TOPTARGETS := all clean
|
|
|
|
$(TOPTARGETS): $(SUBFOLDERS)
|
|
|
|
$(SUBFOLDERS):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|
|
|
|
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)
|