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

16 lines
250 B
Makefile
Raw Normal View History

2020-01-12 02:01:44 +00:00
COMPONENTS := AppletCompanion Sysmodule
TOPTARGETS := all clean
.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
2020-02-05 22:06:13 +00:00
$(MAKE) -C Sysmodule clean