export PHP ?= 5.6 JOBS ?= 2 PHP_MIRROR ?= http://us1.php.net/distributions/ TMPDIR ?= /tmp tmpnam := $(TMPDIR)/php-$(PHP)-$(shell env |grep -E '^with_|^enable_' | tr -c '[a-zA-Z_]' -) makdir := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))) ifdef TRAVIS_JOB_NUMBER prefix ?= $(HOME)/job-$(TRAVIS_JOB_NUMBER) else prefix ?= $(tmpnam) endif exec_prefix ?= $(prefix) bindir = $(exec_prefix)/bin srcdir := $(prefix)/src ifdef TRAVIS_BUILD_DIR curdir ?= $(TRAVIS_BUILD_DIR) else # CURDIR is a make builtin curdir ?= $(CURDIR) endif enable_maintainer_zts ?= no enable_debug ?= no enable_all ?= no with_config_file_scan_dir ?= $(prefix)/etc/php.d with_php_config ?= $(bindir)/php-config extdir = $(shell test -x $(with_php_config) && $(with_php_config) --extension-dir) PECL_MIRROR ?= http://pecl.php.net/get/ PECL_WORDS := $(subst :, ,$(PECL)) PECL_EXTENSION ?= $(word 1,$(PECL_WORDS)) PECL_SONAME ?= $(if $(word 2,$(PECL_WORDS)),$(word 2,$(PECL_WORDS)),$(PECL_EXTENSION)) PECL_VERSION ?= $(word 3,$(PECL_WORDS)) PECL_INI = $(with_config_file_scan_dir)/pecl.ini PECL_DIR := $(if $(filter ext ext%, $(MAKECMDGOALS)), $(curdir), $(srcdir)/pecl-$(PECL_EXTENSION)) #PHP_VERSION_MAJOR = $(firstword $(subst ., ,$(PHP))) PHP_RELEASES = $(srcdir)/releases.tsv PHP_VERSION ?= $(shell test -e $(PHP_RELEASES) && cat $(PHP_RELEASES) | awk -F "\t" '/^$(PHP)\t/{print $$2}') CPPCHECK ?= -v -j $(JOBS) --std=c89 --enable=warning,portability,style --error-exitcode=42 --suppressions-list=$(makdir)/cppcheck.suppressions -I. .SUFFIXES: .PHONY: all all: php .PHONY: versions versions: $(PHP_RELEASES) grep "^$(PHP)" $< $(PHP_RELEASES): $(makdir)/php-version-url-dist.php $(makdir)/php-version-url-qa.php | $(srcdir) printf "master\tmaster\tgit clone --depth 1 -b master https://github.com/php/php-src php-master && cd php-master && ./buildconf\n" >$@ curl -Ss "http://php.net/releases/index.php?json&version=7&max=-1" | $(makdir)/php-version-url-dist.php >>$@ curl -Ss "http://php.net/releases/index.php?json&version=5&max=-1" | $(makdir)/php-version-url-dist.php >>$@ curl -Ss "http://qa.php.net/api.php?type=qa-releases&format=json" | $(makdir)/php-version-url-qa.php >>$@ ## -- PHP .PHONY: clean clean: @if test -d $(srcdir)/php-$(PHP_VERSION); then cd $(srcdir)/php-$(PHP_VERSION); make distclean || true; fi .PHONY: check check: $(PHP_RELEASES) @if test -z "$(PHP)"; then echo "No php version specified, e.g. PHP=5.6"; exit 1; fi .PHONY: reconf reconf: check $(srcdir)/php-$(PHP_VERSION)/configure cd $(srcdir)/php-$(PHP_VERSION) && ./configure --cache-file=config.cache --prefix=$(prefix) .PHONY: php php: check $(bindir)/php | $(PECL_INI) -for EXT_SONAME in $(extdir)/*.so; do \ EXT_SONAME=$$(basename $$EXT_SONAME); \ if test "$$EXT_SONAME" != "*.so" && ! grep -q extension=$$EXT_SONAME $(PECL_INI); then \ echo extension=$$EXT_SONAME >> $(PECL_INI); \ fi \ done $(srcdir)/php-$(PHP_VERSION)/configure: | $(PHP_RELEASES) cd $(srcdir) && awk -F "\t" '/^$(PHP)\t/{exit system($$3)}' <$| $(srcdir)/php-$(PHP_VERSION)/Makefile: $(srcdir)/php-$(PHP_VERSION)/configure | $(PHP_RELEASES) cd $(srcdir)/php-$(PHP_VERSION) && ./configure --cache-file=config.cache --prefix=$(prefix) $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php: $(srcdir)/php-$(PHP_VERSION)/Makefile | $(PHP_RELEASES) cd $(srcdir)/php-$(PHP_VERSION) && make -j $(JOBS) || make $(bindir)/php: $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php | $(PHP_RELEASES) cd $(srcdir)/php-$(PHP_VERSION) && make install $(srcdir) $(extdir) $(with_config_file_scan_dir): mkdir -p $@ ## -- PECL .PHONY: pecl-check pecl-check: @if test -z "$(PECL)"; then echo "No pecl extension specified, e.g. PECL=pecl_http:http"; exit 1; fi .PHONY: pecl-clean pecl-clean: @if test -d $(PECL_DIR); then cd $(PECL_DIR); make distclean || true; fi .PHONY: pecl-rm pecl-rm: rm -f $(extdir)/$(PECL_SONAME).so $(PECL_INI): | $(with_config_file_scan_dir) touch $@ $(PECL_DIR)/config.m4: mkdir -p $(PECL_DIR) curl -Ss $(PECL_MIRROR)/$(PECL_EXTENSION)$(if $(PECL_VERSION),/$(PECL_VERSION)) | tar xz --strip-components 1 -C $(PECL_DIR) $(PECL_DIR)/configure: $(PECL_DIR)/config.m4 cd $(PECL_DIR) && $(bindir)/phpize $(PECL_DIR)/Makefile: $(PECL_DIR)/configure cd $(PECL_DIR) && ./configure --cache-file=config.cache $(PECL_DIR)/.libs/$(PECL_SONAME).so: $(PECL_DIR)/Makefile cd $(PECL_DIR) && make -j $(JOBS) || make $(extdir)/$(PECL_SONAME).so: $(PECL_DIR)/.libs/$(PECL_SONAME).so $(extdir) cd $(PECL_DIR) && make install .PHONY: pecl pecl: pecl-check php $(extdir)/$(PECL_SONAME).so | $(PECL_INI) grep -q extension=$(PECL_SONAME).so $(PECL_INI) || echo extension=$(PECL_SONAME).so >> $(PECL_INI) .PHONY: ext-clean ext-clean: pecl-clean .PHONY: ext-rm ext-rm: pecl-rm .PHONY: ext ext: pecl-check pecl $(makdir)/check-packagexml.php package.xml .PHONY: test test: php REPORT_EXIT_STATUS=1 $(bindir)/php run-tests.php -q -p $(bindir)/php --set-timeout 300 --show-diff tests .PHONY: cppcheck cppcheck: cppcheck $(CPPCHECK) $$(awk -F= '/^CPPFLAGS|^INCLUDES/{print $$2}'