mirror of
https://github.com/cathery/sys-con.git
synced 2024-11-16 14:09:51 +00:00
20 lines
349 B
Makefile
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
|