jw-pkg/make/subdirs.mk
2017-09-02 19:26:52 +00:00

14 lines
270 B
Makefile

all:
clean: clean.var
distclean: clean.var distclean.var
all install clean distclean test:
ifneq ($(SUBDIRS_TO_ITERATE),)
set -e; for dir in $(SUBDIRS_TO_ITERATE); do make -C $$dir $@; done
endif
clean.var:
$(RM) -rf $(CLEAN)
distclean.var:
$(RM) -rf $(DISTCLEAN)