jw-pkg/make/cleandirs.mk

14 lines
193 B
Makefile
Raw Normal View History

.NOTPARALLEL:
all:
install:
clean: do.clean
distclean: do.distclean
include $(MODDIR)/make/defs.mk
SUBDIRS ?= $(FIND_SUBDIRS)
do.%:
set -e; for d in $(SUBDIRS) ; do make -wC $$d $*; done