]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Get rid of NO_RECURSION. This was originally implemented for PHP and is not
authorSascha Schumann <sascha@apache.org>
Sat, 29 Apr 2000 14:43:10 +0000 (14:43 +0000)
committerSascha Schumann <sascha@apache.org>
Sat, 29 Apr 2000 14:43:10 +0000 (14:43 +0000)
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

build/rules.mk

index 628049048ba336972287e26ce8c28b1853b47067..c7bf4691faabfb629a2cd558a167b34da0b1a1e2 100644 (file)
@@ -108,20 +108,18 @@ 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"; \
-                       if test "$$i" = "."; then \
-                               ok=yes; \
-                               target="$$target-p"; \
-                       fi; \
-                       if test ! -f $$i/.deps; then touch $$i/.deps; fi; \
-                       (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
+       list='$(SUBDIRS)'; for i in $$list; do \
+               target="$$otarget"; \
+               echo "Making $$target in $$i"; \
+               if test "$$i" = "."; then \
+                       ok=yes; \
+                       target="$$target-p"; \
+               fi; \
+               if test ! -f $$i/.deps; then touch $$i/.deps; fi; \
+               (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
 
 all-p: $(targets)
 install-p: $(targets) $(install_targets)