mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
14 lines
235 B
Makefile
14 lines
235 B
Makefile
|
KIPS := boot boot2 loader pm sm
|
||
|
SUBFOLDERS := libstratosphere $(KIPS)
|
||
|
|
||
|
TOPTARGETS := all clean
|
||
|
|
||
|
$(TOPTARGETS): $(SUBFOLDERS)
|
||
|
|
||
|
$(SUBFOLDERS):
|
||
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|
||
|
|
||
|
$(KIPS): libstratosphere
|
||
|
|
||
|
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)
|