Commit a7f7bcb0 authored by Sascha Schumann's avatar Sascha Schumann
Browse files

Get rid of NO_RECURSION. This was originally implemented for PHP and is not

used by Apache (will soon be obsolete in PHP as well).


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85096 13f79535-47bb-0310-9956-ffa450edef68
parent 01c15806
Loading
Loading
Loading
Loading
+12 −14
Original line number Diff line number Diff line
@@ -108,7 +108,6 @@ install: install-recursive

distclean-recursive depend-recursive clean-recursive all-recursive install-recursive:
	@otarget=`echo $@|sed s/-recursive//`; \
	if test '$(NO_RECURSION)' != "$$otarget"; then \
	list='$(SUBDIRS)'; for i in $$list; do \
		target="$$otarget"; \
		echo "Making $$target in $$i"; \
@@ -120,8 +119,7 @@ distclean-recursive depend-recursive clean-recursive all-recursive install-recur
		(cd $$i && $(MAKE) $$target) || exit 1; \
	done; \
	if test "$$otarget" = "all" && test -z '$(targets)'; then ok=yes; fi;\
		if test "$$ok" != "yes"; then $(MAKE) "$$otarget-p" || exit 1; fi;\
	fi
	if test "$$ok" != "yes"; then $(MAKE) "$$otarget-p" || exit 1; fi

all-p: $(targets)
install-p: $(targets) $(install_targets)