mirror of
https://github.com/cathery/sys-con.git
synced 2024-11-05 08:26:32 +00:00
16 lines
296 B
Makefile
16 lines
296 B
Makefile
|
COMPONENTS := AppletCompanion Sysmodule
|
||
|
TOPTARGETS := all clean
|
||
|
|
||
|
.PHONY: $(TOPTARGETS) $(COMPONENTS)
|
||
|
|
||
|
all: $(COMPONENTS)
|
||
|
|
||
|
AppletCompanion:
|
||
|
$(MAKE) -C $@ -j$(nproc)
|
||
|
|
||
|
Sysmodule:
|
||
|
$(MAKE) -C $@ buildSysmodule -j$(nproc)
|
||
|
|
||
|
clean:
|
||
|
$(MAKE) -C AppletCompanion clean
|
||
|
$(MAKE) -C Sysmodule cleanSysmodule
|