1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-07-08 03:58:43 +00:00
sys-con/source/Makefile
2020-02-20 03:26:15 +03:00

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