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.
tde-construct/category.mk

19 lines
462 B

# This makefile is to be included from Makefiles in each category
# directory.
%:
@for i in $(filter-out CVS/,$(wildcard */)) ; do \
$(MAKE) -C $$i $* ; \
done
paranoid-%:
@for i in $(filter-out CVS/,$(wildcard */)) ; do \
$(MAKE) -C $$i $* || exit 2; \
done
export BUILDLOG ?= $(shell pwd)/buildlog.txt
report-%:
@for i in $(filter-out CVS/,$(wildcard */)) ; do \
$(MAKE) -C $$i $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG); \
done