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