25개 이상의 토픽을 선택하실 수 없습니다. 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