mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 12:11:43 +00:00
14 lines
270 B
Makefile
14 lines
270 B
Makefile
MODULES := loader pm sm boot fs_mitm set_mitm creport fatal
|
|
|
|
SUBFOLDERS := libstratosphere $(MODULES)
|
|
|
|
TOPTARGETS := all clean
|
|
|
|
$(TOPTARGETS): $(SUBFOLDERS)
|
|
|
|
$(SUBFOLDERS):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|
|
|
|
$(MODULES): libstratosphere
|
|
|
|
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)
|