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