mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
23 lines
782 B
Makefile
23 lines
782 B
Makefile
# -*- makefile -*-
|
|
|
|
peardir=$(PEAR_INSTALLDIR)
|
|
|
|
# Skip all php.ini files altogether
|
|
PEAR_INSTALL_FLAGS = -n -dshort_open_tag=0 -dsafe_mode=0
|
|
|
|
install-pear-installer: $(top_builddir)/sapi/cli/php
|
|
@$(top_builddir)/sapi/cli/php $(PEAR_INSTALL_FLAGS) $(srcdir)/install-pear.php -d "$(peardir)" -b "$(bindir)" $(srcdir)/package-*.xml
|
|
|
|
install-pear-packages: $(top_builddir)/sapi/cli/php
|
|
@$(top_builddir)/sapi/cli/php $(PEAR_INSTALL_FLAGS) $(srcdir)/install-pear.php -d "$(peardir)" -b "$(bindir)" $(srcdir)/packages/*.tar
|
|
|
|
install-pear:
|
|
@echo "Installing PEAR environment: $(INSTALL_ROOT)$(peardir)/"
|
|
@if $(mkinstalldirs) $(INSTALL_ROOT)$(peardir); then \
|
|
$(MAKE) -s install-pear-installer install-pear-packages; \
|
|
else \
|
|
cat $(srcdir)/install-pear.txt; \
|
|
exit 5; \
|
|
fi
|
|
|