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

20 lines
349 B
Makefile

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