1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-07-05 10:48:46 +00:00
sys-con/source/Makefile

22 lines
376 B
Makefile
Raw Normal View History

2020-03-03 16:45:17 +00:00
COMPONENTS := libstratosphere AppletCompanion Sysmodule
2020-03-10 18:23:10 +00:00
TOPTARGETS := all clean mrproper
2020-01-12 02:01:44 +00:00
.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
2020-03-10 18:23:10 +00:00
mrproper: clean
2020-03-03 16:45:17 +00:00
$(MAKE) -C libstratosphere clean