Skip to content

Commit 433faa0

Browse files
committed
Fix parallel makes
1 parent 68407ef commit 433faa0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

RULES

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ include $(srcdir)/MISCFILES
77

88
AM_DEFAULT_VERBOSITY = 0
99

10+
ifneq ($(MAKE_TERMOUT),)
1011
ifeq ($(TERM),xterm)
1112
am__v_color_cc=\033[27;32m
1213
am__v_color_ld=\033[27;34m
1314
am__v_color_rc=\033[27;36m
1415
am__v_color_off=\033[m
1516
endif
17+
endif
1618

1719
ifeq ($(ECHO_E),)
1820
ECHO_E=echo -e
@@ -130,8 +132,10 @@ distdir: $(DISTFILES) distdir-local
130132

131133
distdir-local:
132134

135+
all-recursive:: all-here
136+
133137
all-recursive clean-recursive bakclean-recursive distclean-recursive \
134-
install-recursive uninstall-recursive dist-recursive:
138+
install-recursive uninstall-recursive dist-recursive::
135139
@set fnord $(MAKEFLAGS); amf=$$2; \
136140
list='$(SUBDIRS)'; for subdir in $$list; do \
137141
target=`echo $@ | sed s/-recursive//`; \
@@ -140,7 +144,6 @@ install-recursive uninstall-recursive dist-recursive:
140144
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
141145
done && test -z "$$fail"
142146

143-
144147
#
145148
# global CFLAGS and ASFLAGS
146149
#

0 commit comments

Comments
 (0)