diff --git a/source/Makefile b/source/Makefile index 27181d9..987ba56 100644 --- a/source/Makefile +++ b/source/Makefile @@ -1,16 +1,20 @@ -COMPONENTS := AppletCompanion Sysmodule +COMPONENTS := libstratosphere AppletCompanion Sysmodule TOPTARGETS := all clean .PHONY: $(TOPTARGETS) $(COMPONENTS) all: $(COMPONENTS) +libstratosphere: + $(MAKE) -C $@ + AppletCompanion: $(MAKE) -C $@ -Sysmodule: +Sysmodule: libstratosphere $(MAKE) -C $@ clean: $(MAKE) -C AppletCompanion clean - $(MAKE) -C Sysmodule clean \ No newline at end of file + $(MAKE) -C Sysmodule clean + $(MAKE) -C libstratosphere clean \ No newline at end of file