X-Git-Url: https://git.m6w6.name/?p=m6w6%2Ftravis-pecl;a=blobdiff_plain;f=Makefile;h=4f315ee60e8b1b8178324c257a7b834b096ecf72;hp=7274717dba7c97f1032a2c2276f979c3ea8432ec;hb=d85a019a84a5778c992c79a22abde8c625ec47ec;hpb=cebb9675e8d36318a928cfa48402fcc434cc7b5d diff --git a/Makefile b/Makefile index 7274717..4f315ee 100644 --- a/Makefile +++ b/Makefile @@ -3,15 +3,25 @@ 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 ?= $(HOME) +prefix ?= $(tmpnam) endif exec_prefix ?= $(prefix) bindir = $(exec_prefix)/bin -srcdir := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))) +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 @@ -22,12 +32,18 @@ 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_EXTENSION ?= $(shell echo $(PECL) | cut -d: -f1) -PECL_SONAME ?= $(if $(shell echo $(PECL) | cut -d: -f2),$(shell echo $(PECL) | cut -d: -f2),$(PECL_EXTENSION)) -PECL_VERSION ?= $(shell echo $(PECL) | cut -d: -f3 -s) +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_VERSIONS_JSON = $(srcdir)/php-versions$(PHP_VERSION_MAJOR).json +PHP_VERSION ?= $(shell test -e $(PHP_VERSIONS_JSON) && cat $(PHP_VERSIONS_JSON) | $(makdir)/php-version.php $(PHP)) -PHP_VERSION ?= $(shell test -e $(srcdir)/php-versions.json && cat $(srcdir)/php-versions.json | $(srcdir)/php-version.php $(PHP)) +CPPCHECK ?= -v -j $(JOBS) --std=c89 --enable=warning,portability,style --error-exitcode=42 --suppressions-list=$(makdir)/cppcheck.suppressions -I. .SUFFIXES: @@ -41,36 +57,42 @@ clean: @if test -d $(srcdir)/php-$(PHP_VERSION); then cd $(srcdir)/php-$(PHP_VERSION); make distclean || true; fi .PHONY: check -check: $(srcdir)/php-versions.json +check: $(PHP_VERSIONS_JSON) @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 -C --prefix=$(prefix) + cd $(srcdir)/php-$(PHP_VERSION) && ./configure --cache-file=config.cache --prefix=$(prefix) .PHONY: php -php: check $(bindir)/php - -$(srcdir)/php-versions.json: $(srcdir)/php-version.php - curl -Sso $@ "http://php.net/releases/index.php?json&version=5&max=-1" - -$(srcdir)/php-$(PHP_VERSION)/configure: | $(srcdir)/php-versions.json +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 + +$(PHP_VERSIONS_JSON): $(makdir)/php-version.php | $(srcdir) + curl -Sso $@ "http://php.net/releases/index.php?json&version=$(PHP_VERSION_MAJOR)&max=-1" + +$(srcdir)/php-$(PHP_VERSION)/configure: | $(PHP_VERSIONS_JSON) if test $(PHP_VERSION) = "master"; then \ cd $(srcdir) && git clone --depth 1 -b master https://github.com/php/php-src php-master && cd php-master && ./buildconf; \ else \ curl -Ss $(PHP_MIRROR)/php-$(PHP_VERSION).tar.bz2 | tar xj -C $(srcdir); \ fi -$(srcdir)/php-$(PHP_VERSION)/Makefile: $(srcdir)/php-$(PHP_VERSION)/configure | $(srcdir)/php-versions.json - cd $(srcdir)/php-$(PHP_VERSION) && ./configure -C --prefix=$(prefix) +$(srcdir)/php-$(PHP_VERSION)/Makefile: $(srcdir)/php-$(PHP_VERSION)/configure | $(PHP_VERSIONS_JSON) + cd $(srcdir)/php-$(PHP_VERSION) && ./configure --cache-file=config.cache --prefix=$(prefix) -$(srcdir)/php-$(PHP_VERSION)/sapi/cli/php: $(srcdir)/php-$(PHP_VERSION)/Makefile | $(srcdir)/php-versions.json +$(srcdir)/php-$(PHP_VERSION)/sapi/cli/php: $(srcdir)/php-$(PHP_VERSION)/Makefile | $(PHP_VERSIONS_JSON) cd $(srcdir)/php-$(PHP_VERSION) && make -j $(JOBS) || make -$(bindir)/php: $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php | $(srcdir)/php-versions.json +$(bindir)/php: $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php | $(PHP_VERSIONS_JSON) cd $(srcdir)/php-$(PHP_VERSION) && make install -$(with_config_file_scan_dir): +$(srcdir) $(extdir) $(with_config_file_scan_dir): mkdir -p $@ ## -- PECL @@ -81,7 +103,7 @@ pecl-check: .PHONY: pecl-clean pecl-clean: - @if test -d $(srcdir)/pecl-$(PECL_EXTENSION); then cd $(srcdir)/pecl-$(PECL_EXTENSION); make distclean || true; fi + @if test -d $(PECL_DIR); then cd $(PECL_DIR); make distclean || true; fi .PHONY: pecl-rm pecl-rm: @@ -90,24 +112,21 @@ pecl-rm: $(PECL_INI): | $(with_config_file_scan_dir) touch $@ -$(srcdir)/pecl-$(PECL_EXTENSION): - test -e $@ || ln -s $(CURDIR) $@ +$(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) -$(srcdir)/pecl-$(PECL_EXTENSION)/config.m4: - mkdir -p $(srcdir)/pecl-$(PECL_EXTENSION) - curl -Ss $(PECL_MIRROR)/$(PECL_EXTENSION)$(if $(PECL_VERSION),/$(PECL_VERSION)) | tar xz --strip-components 1 -C $(srcdir)/pecl-$(PECL_EXTENSION) +$(PECL_DIR)/configure: $(PECL_DIR)/config.m4 + cd $(PECL_DIR) && $(bindir)/phpize -$(srcdir)/pecl-$(PECL_EXTENSION)/configure: $(srcdir)/pecl-$(PECL_EXTENSION)/config.m4 - cd $(srcdir)/pecl-$(PECL_EXTENSION) && $(bindir)/phpize +$(PECL_DIR)/Makefile: $(PECL_DIR)/configure + cd $(PECL_DIR) && ./configure --cache-file=config.cache -$(srcdir)/pecl-$(PECL_EXTENSION)/Makefile: $(srcdir)/pecl-$(PECL_EXTENSION)/configure - cd $(srcdir)/pecl-$(PECL_EXTENSION) && ./configure -C +$(PECL_DIR)/.libs/$(PECL_SONAME).so: $(PECL_DIR)/Makefile + cd $(PECL_DIR) && make -j $(JOBS) || make -$(srcdir)/pecl-$(PECL_EXTENSION)/.libs/$(PECL_SONAME).so: $(srcdir)/pecl-$(PECL_EXTENSION)/Makefile - cd $(srcdir)/pecl-$(PECL_EXTENSION) && make -j $(JOBS) || make - -$(extdir)/$(PECL_SONAME).so: $(srcdir)/pecl-$(PECL_EXTENSION)/.libs/$(PECL_SONAME).so - cd $(srcdir)/pecl-$(PECL_EXTENSION) && make install +$(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) @@ -120,12 +139,16 @@ ext-clean: pecl-clean ext-rm: pecl-rm .PHONY: ext -ext: pecl-check $(srcdir)/pecl-$(PECL_EXTENSION) pecl - $(srcdir)/check-packagexml.php package.xml +ext: pecl-check pecl + $(makdir)/check-packagexml.php package.xml -.PHONY: php +.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}'