jw-pkg/make/subdirs.mk
Jan Lindemann b2d6e6f554 Everywhere: Rename MODDIR -> JWBDIR
Rename the omnipresent MODDIR variable to JWBDIR, since that's more to the
point.

Signed-off-by: Jan Lindemann <jan@janware.com>
2019-06-29 21:34:18 +00:00

15 lines
306 B
Makefile

include $(JWBDIR)/make/defs-dirs.mk
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)