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

22 lines
376 B
Makefile

COMPONENTS := libstratosphere AppletCompanion Sysmodule
TOPTARGETS := all clean mrproper
.PHONY: $(TOPTARGETS) $(COMPONENTS)
all: $(COMPONENTS)
libstratosphere:
$(MAKE) -C $@
AppletCompanion:
$(MAKE) -C $@
Sysmodule: libstratosphere
$(MAKE) -C $@
clean:
$(MAKE) -C AppletCompanion clean
$(MAKE) -C Sysmodule clean
mrproper: clean
$(MAKE) -C libstratosphere clean