1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-07-03 02:18:43 +00:00

Fix libstratosphere not being built

This commit is contained in:
cathery 2020-03-03 19:45:17 +03:00
parent a9c83a7b17
commit 95de6047be

View File

@ -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
$(MAKE) -C Sysmodule clean
$(MAKE) -C libstratosphere clean