summaryrefslogtreecommitdiff
path: root/Makefile.global
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2002-07-03 22:12:13 +0000
committerfoobar <sniper@php.net>2002-07-03 22:12:13 +0000
commitbb0d7d6e31adbd59b324ea9f148fd79db405ecfe (patch)
tree74b79a0846069131be4de26aa20b27b4f1282d23 /Makefile.global
parent0e52055f70bc8dd81081854481970a70dc3bdc57 (diff)
downloadphp-git-bb0d7d6e31adbd59b324ea9f148fd79db405ecfe.tar.gz
- Let's be tad more verbose what's happening during 'make install'
Diffstat (limited to 'Makefile.global')
-rw-r--r--Makefile.global10
1 files changed, 6 insertions, 4 deletions
diff --git a/Makefile.global b/Makefile.global
index 6fb768e5ab..2755e136dd 100644
--- a/Makefile.global
+++ b/Makefile.global
@@ -26,9 +26,11 @@ install: $(install_targets)
install-cli: sapi/cli/php
- $(INSTALL_CLI)
+ @echo "Installing PHP CLI binary: $(INSTALL_ROOT)$(bindir)/"
+ @$(INSTALL_CLI)
install-sapi: libphp4.la
+ @echo "Installing PHP SAPI module"
-@$(LIBTOOL) --silent --mode=install cp libphp4.la $(phptempdir)/libphp4.la >/dev/null 2>&1
-@$(mkinstalldirs) $(INSTALL_ROOT)$(bindir)
-@if test ! -r $(phptempdir)/libphp4.$(SHLIB_SUFFIX_NAME); then \
@@ -39,17 +41,17 @@ install-sapi: libphp4.la
fi; \
done; \
fi
- $(INSTALL_IT)
+ @$(INSTALL_IT)
install-modules: build-modules
@test -d modules && \
$(mkinstalldirs) $(INSTALL_ROOT)$(EXTENSION_DIR) && \
- echo "installing shared modules into $(EXTENSION_DIR)" && \
+ echo "Installing shared extensions: $(INSTALL_ROOT)$(EXTENSION_DIR)/" && \
rm -f modules/*.la && \
cp modules/* $(INSTALL_ROOT)$(EXTENSION_DIR) >/dev/null 2>&1 || true
install-tester:
- @echo "Installing regression tester"
+ @echo "Installing regression tester: $(INSTALL_ROOT)$(PEAR_INSTALLDIR)/"
@$(mkinstalldirs) $(PEAR_INSTALLDIR)
@$(INSTALL) -m 755 $(top_srcdir)/run-tests.php $(INSTALL_ROOT)$(PEAR_INSTALLDIR)