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