summaryrefslogtreecommitdiffstats
path: root/build/special.mk
diff options
context:
space:
mode:
authorRoy T. Fielding <fielding@apache.org>2001-05-18 02:48:57 +0200
committerRoy T. Fielding <fielding@apache.org>2001-05-18 02:48:57 +0200
commit62367507a993a6e5b77deb2d763fbe51f6463ca4 (patch)
tree7dd71990272113edbd65e9e255e2efce9152c2bf /build/special.mk
parentRainy day in Charlottesville... (diff)
downloadapache2-62367507a993a6e5b77deb2d763fbe51f6463ca4.tar.xz
apache2-62367507a993a6e5b77deb2d763fbe51f6463ca4.zip
Change the make targets and rules to be consistent in all of the
Apache-owned source trees. Sanity is a good thing. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89140 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/special.mk')
-rw-r--r--build/special.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/build/special.mk b/build/special.mk
index ef0b47ee0a..3d974f1a72 100644
--- a/build/special.mk
+++ b/build/special.mk
@@ -57,17 +57,17 @@
all: all-recursive
include $(builddir)/modules.mk
-targets = $(static)
-shared_targets = $(shared)
-install_targets = install-modules
+TARGETS = $(static)
+SHARED_TARGETS = $(shared)
+INSTALL_TARGETS = install-modules
install-modules:
- @shared='$(shared)'; \
- builtin='$(BUILTIN_LIBS)'; \
+ @builtin='$(BUILTIN_LIBS)'; \
has_mod_so=`echo $$builtin|sed 's/^.*mod_so.*$$/has_mod_so/'`; \
if [ "x$$has_mod_so" = "xhas_mod_so" ]; then \
$(MKINSTALLDIRS) $(libexecdir); \
- for i in $$shared; do \
+ @list='$(shared)'; \
+ for i in $$list; do \
$(SH_LIBTOOL) --mode=install cp $$i $(libexecdir); \
done; \
fi