1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-11-19 14:10:00 +00:00
sys-con/source/Makefile
2020-12-08 16:44:45 +03:00

28 lines
708 B
Makefile

COMPONENTS := libstratosphere AppletCompanion Sysmodule
TOPTARGETS := all clean mrproper
.PHONY: $(TOPTARGETS) $(COMPONENTS)
all: $(COMPONENTS)
libstratosphere:
@echo Building libstratosphere...
@$(MAKE) --no-print-directory -C $@
AppletCompanion:
@echo Building applet companion...
@$(MAKE) --no-print-directory -C $@
Sysmodule: libstratosphere
@echo Building sysmodule...
@$(MAKE) --no-print-directory -C $@
clean:
@echo Cleaning applet companion...
@$(MAKE) --no-print-directory -C AppletCompanion clean
@echo Cleaning sysmodule...
@$(MAKE) --no-print-directory -C Sysmodule clean
mrproper: clean
@echo Cleaning libstratosphere...
@$(MAKE) --no-print-directory -C libstratosphere clean