1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-11-16 14:09:51 +00:00
sys-con/source/Makefile

16 lines
250 B
Makefile
Raw Permalink Normal View History

COMPONENTS := AppletCompanion Sysmodule
TOPTARGETS := all clean
2020-01-12 02:01:44 +00:00
.PHONY: $(TOPTARGETS) $(COMPONENTS)
all: $(COMPONENTS)
AppletCompanion:
2020-02-20 00:26:15 +00:00
$(MAKE) -C $@
2020-01-12 02:01:44 +00:00
Sysmodule:
2020-02-20 00:26:15 +00:00
$(MAKE) -C $@
2020-01-12 02:01:44 +00:00
clean:
$(MAKE) -C AppletCompanion clean
$(MAKE) -C Sysmodule clean