2020-03-03 16:45:17 +00:00
|
|
|
COMPONENTS := libstratosphere AppletCompanion Sysmodule
|
2020-01-12 02:01:44 +00:00
|
|
|
TOPTARGETS := all clean
|
|
|
|
|
|
|
|
.PHONY: $(TOPTARGETS) $(COMPONENTS)
|
|
|
|
|
|
|
|
all: $(COMPONENTS)
|
|
|
|
|
2020-03-03 16:45:17 +00:00
|
|
|
libstratosphere:
|
|
|
|
$(MAKE) -C $@
|
|
|
|
|
2020-01-12 02:01:44 +00:00
|
|
|
AppletCompanion:
|
2020-02-20 00:26:15 +00:00
|
|
|
$(MAKE) -C $@
|
2020-01-12 02:01:44 +00:00
|
|
|
|
2020-03-03 16:45:17 +00:00
|
|
|
Sysmodule: libstratosphere
|
2020-02-20 00:26:15 +00:00
|
|
|
$(MAKE) -C $@
|
2020-01-12 02:01:44 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
$(MAKE) -C AppletCompanion clean
|
2020-03-03 16:45:17 +00:00
|
|
|
$(MAKE) -C Sysmodule clean
|
|
|
|
$(MAKE) -C libstratosphere clean
|