mirror of
https://github.com/lowobservable/coax.git
synced 2026-01-20 18:17:29 +00:00
14 lines
166 B
Makefile
14 lines
166 B
Makefile
SUBDIRS = tests rtl
|
|
|
|
all: $(SUBDIRS)
|
|
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
clean:
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir clean; \
|
|
done
|
|
|
|
.PHONY: all $(SUBDIRS) clean
|