You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
251 B
17 lines
251 B
SUBDIRS=commonReader httpReader
|
|
|
|
.PHONY: all clean subdirs subdirs_clean $(SUBDIRS)
|
|
|
|
all: $(SUBDIRS)
|
|
|
|
subdirs: $(SUBDIRS)
|
|
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
subdirs_clean:
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir clean; \
|
|
done
|
|
|
|
clean: subdirs_clean
|