Files
s390-tools/iucvterm/Makefile
Marc Hartmayer bc7359d2a3 iucvterm: abort if one of the recursive targets is failing
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>
2020-11-06 16:18:21 +01:00

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