mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Abort processing as soon as one of the recursive targets is failing. Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
29 lines
508 B
Makefile
29 lines
508 B
Makefile
#! /usr/bin/make -f
|
|
|
|
include ../common.mak
|
|
|
|
|
|
GETTEXT_TEXTDOMAIN = iucvterm
|
|
export GETTEXT_TEXTDOMAIN
|
|
|
|
|
|
SUBDIRS = src po doc bin etc test
|
|
RECURSIVE_TARGETS = all-recursive install-recursive clean-recursive \
|
|
check-recursive
|
|
|
|
|
|
all: all-recursive
|
|
check: check-recursive
|
|
install: all install-recursive
|
|
clean: clean-recursive
|
|
|
|
|
|
$(RECURSIVE_TARGETS):
|
|
@target=`echo $@ |sed s/-recursive//`; \
|
|
for d in $(SUBDIRS); do \
|
|
(cd $$d && $(MAKE) $$target) || exit 1; \
|
|
done
|
|
|
|
|
|
.PHONY: install clean
|