1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-10-01 12:22:01 +00:00
sys-con/source/Makefile

29 lines
738 B
Makefile
Raw Normal View History

2020-12-08 14:09:36 +00:00
Libstrat := Atmosphere-libs/libstratosphere
COMPONENTS := $(Libstrat) 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-12-08 14:09:36 +00:00
$(Libstrat):
2020-12-08 13:44:45 +00:00
@echo Building libstratosphere...
@$(MAKE) --no-print-directory -C $@
2020-03-03 16:45:17 +00:00
2020-01-12 02:01:44 +00:00
AppletCompanion:
2020-12-08 13:44:45 +00:00
@echo Building applet companion...
@$(MAKE) --no-print-directory -C $@
2020-01-12 02:01:44 +00:00
2020-12-08 14:09:36 +00:00
Sysmodule: $(Libstrat)
2020-12-08 13:44:45 +00:00
@echo Building sysmodule...
@$(MAKE) --no-print-directory -C $@
2020-01-12 02:01:44 +00:00
clean:
2020-12-08 13:44:45 +00:00
@echo Cleaning applet companion...
@$(MAKE) --no-print-directory -C AppletCompanion clean
@echo Cleaning sysmodule...
@$(MAKE) --no-print-directory -C Sysmodule clean
2020-03-10 18:23:10 +00:00
mrproper: clean
2020-12-08 13:44:45 +00:00
@echo Cleaning libstratosphere...
2020-12-08 14:09:36 +00:00
@$(MAKE) --no-print-directory -C $(Libstrat) clean