Atmosphere/stratosphere/Makefile
TuxSH b4eeddd7e1 Revamp all the Makefiles (thanks @fincs @WinterMute)
... dependencies are now properly handled (e.g. header changes, etc.)
2018-05-19 01:07:27 +02:00

17 lines
246 B
Makefile

KIPS := loader pm sm boot
#TODO: boot2 ?
SUBFOLDERS := libstratosphere $(KIPS)
TOPTARGETS := all clean
$(TOPTARGETS): $(SUBFOLDERS)
$(SUBFOLDERS):
$(MAKE) -C $@ $(MAKECMDGOALS)
$(KIPS): libstratosphere
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)