From 95de6047be611d8cad151d40256000bb408c4fcd Mon Sep 17 00:00:00 2001 From: cathery Date: Tue, 3 Mar 2020 19:45:17 +0300 Subject: [PATCH] Fix libstratosphere not being built --- source/Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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