mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
16 lines
262 B
Makefile
16 lines
262 B
Makefile
KIPS := loader pm sm boot fs_mitm creport
|
|
|
|
#TODO: boot2 ?
|
|
|
|
SUBFOLDERS := libstratosphere $(KIPS)
|
|
|
|
TOPTARGETS := all clean
|
|
|
|
$(TOPTARGETS): $(SUBFOLDERS)
|
|
|
|
$(SUBFOLDERS):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|
|
|
|
$(KIPS): libstratosphere
|
|
|
|
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)
|