Make a top-level make build everything in order
This commit is contained in:
13
stratosphere/Makefile
Normal file
13
stratosphere/Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
KIPS := boot boot2 loader pm sm
|
||||
SUBFOLDERS := libstratosphere $(KIPS)
|
||||
|
||||
TOPTARGETS := all clean
|
||||
|
||||
$(TOPTARGETS): $(SUBFOLDERS)
|
||||
|
||||
$(SUBFOLDERS):
|
||||
$(MAKE) -C $@ $(MAKECMDGOALS)
|
||||
|
||||
$(KIPS): libstratosphere
|
||||
|
||||
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)
|
||||
Reference in New Issue
Block a user