mirror of
https://github.com/cathery/sys-con.git
synced 2024-11-19 05:09:49 +00:00
29 lines
738 B
Makefile
29 lines
738 B
Makefile
Libstrat := Atmosphere-libs/libstratosphere
|
|
COMPONENTS := $(Libstrat) AppletCompanion Sysmodule
|
|
TOPTARGETS := all clean mrproper
|
|
|
|
.PHONY: $(TOPTARGETS) $(COMPONENTS)
|
|
|
|
all: $(COMPONENTS)
|
|
|
|
$(Libstrat):
|
|
@echo Building libstratosphere...
|
|
@$(MAKE) --no-print-directory -C $@
|
|
|
|
AppletCompanion:
|
|
@echo Building applet companion...
|
|
@$(MAKE) --no-print-directory -C $@
|
|
|
|
Sysmodule: $(Libstrat)
|
|
@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 $(Libstrat) clean
|