exit after first found version
[m6w6/travis-pecl] / Makefile
1 export
2
3 PHP ?= 5.6
4 JOBS ?= 2
5 PHP_MIRROR ?= http://us1.php.net/distributions/
6 TMPDIR ?= /tmp
7
8 tmpnam := $(TMPDIR)/php-$(PHP)-$(shell env |grep -E '^with_|^enable_' | tr -c '[a-zA-Z_]' -)
9 makdir := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
10
11 ifdef TRAVIS_JOB_NUMBER
12 prefix ?= $(HOME)/job-$(TRAVIS_JOB_NUMBER)
13 else
14 prefix ?= $(tmpnam)
15 endif
16 exec_prefix ?= $(prefix)
17 bindir = $(exec_prefix)/bin
18 srcdir := $(prefix)/src
19 ifdef TRAVIS_BUILD_DIR
20 curdir ?= $(TRAVIS_BUILD_DIR)
21 else
22 # CURDIR is a make builtin
23 curdir ?= $(CURDIR)
24 endif
25
26 enable_maintainer_zts ?= no
27 enable_debug ?= no
28 enable_all ?= no
29 with_config_file_scan_dir ?= $(prefix)/etc/php.d
30
31 with_php_config ?= $(bindir)/php-config
32 extdir = $(shell test -x $(with_php_config) && $(with_php_config) --extension-dir)
33
34 PECL_MIRROR ?= http://pecl.php.net/get/
35 PECL_WORDS := $(subst :, ,$(PECL))
36 PECL_EXTENSION ?= $(word 1,$(PECL_WORDS))
37 PECL_SONAME ?= $(if $(word 2,$(PECL_WORDS)),$(word 2,$(PECL_WORDS)),$(PECL_EXTENSION))
38 PECL_VERSION ?= $(word 3,$(PECL_WORDS))
39 PECL_INI = $(with_config_file_scan_dir)/pecl.ini
40 PECL_DIR := $(if $(filter ext ext%, $(MAKECMDGOALS)), $(curdir), $(srcdir)/pecl-$(PECL_EXTENSION))
41
42 #PHP_VERSION_MAJOR = $(firstword $(subst ., ,$(PHP)))
43
44 PHP_RELEASES = $(srcdir)/releases.tsv
45 PHP_VERSION ?= $(shell test -e $(PHP_RELEASES) && cat $(PHP_RELEASES) | awk -F "\t" '/^$(PHP)\t/{print $$2; exit}')
46
47 CPPCHECK_STD ?= c89
48 CPPCHECK_ENABLE ?= portability,style
49 CPPCHECK_EXITCODE ?= 42
50 CPPCHECK_SUPPRESSIONS ?= $(makdir)/cppcheck.suppressions
51 CPPCHECK_INCLUDES ?= -I. $(shell test -f Makefile && awk -F= '/^CPPFLAGS|^INCLUDES/{print $$2}' <Makefile)
52 CPPCHECK_VERSION ?= 1.75
53 CPPCHECK_ARGS ?= -v -j $(JOBS) --std=$(CPPCHECK_STD) --enable=$(CPPCHECK_ENABLE) --error-exitcode=$(CPPCHECK_EXITCODE) --suppressions-list=$(CPPCHECK_SUPPRESSIONS) $(CPPCHECK_INCLUDES)
54
55 .SUFFIXES:
56
57 .PHONY: all
58 all: php
59
60 .PHONY: versions
61 versions: $(PHP_RELEASES)
62 grep "^$(PHP)" $<
63
64 $(PHP_RELEASES): $(makdir)/php-version-url-dist.php $(makdir)/php-version-url-qa.php | $(srcdir)
65 printf "master\tmaster\tgit clone --depth 1 -b master https://github.com/php/php-src php-master && cd php-master && ./buildconf\n" >$@
66 curl -Ss "http://php.net/releases/index.php?json&version=7&max=-1" | $(makdir)/php-version-url-dist.php >>$@
67 curl -Ss "http://php.net/releases/index.php?json&version=5&max=-1" | $(makdir)/php-version-url-dist.php >>$@
68 curl -Ss "http://qa.php.net/api.php?type=qa-releases&format=json" | $(makdir)/php-version-url-qa.php >>$@
69
70 ## -- PHP
71
72 .PHONY: clean
73 clean:
74 @if test -d $(srcdir)/php-$(PHP_VERSION); then cd $(srcdir)/php-$(PHP_VERSION); make distclean || true; fi
75
76 .PHONY: check
77 check: $(PHP_RELEASES)
78 @if test -z "$(PHP)"; then echo "No php version specified, e.g. PHP=5.6"; exit 1; fi
79
80 .PHONY: reconf
81 reconf: check $(srcdir)/php-$(PHP_VERSION)/configure
82 cd $(srcdir)/php-$(PHP_VERSION) && ./configure --cache-file=config.cache --prefix=$(prefix)
83
84 .PHONY: php
85 php: check $(bindir)/php | $(PECL_INI)
86 -for EXT_SONAME in $(extdir)/*.so; do \
87 EXT_SONAME=$$(basename $$EXT_SONAME); \
88 if test "$$EXT_SONAME" != "*.so" && ! grep -q extension=$$EXT_SONAME $(PECL_INI); then \
89 echo extension=$$EXT_SONAME >> $(PECL_INI); \
90 fi \
91 done
92
93 $(srcdir)/php-$(PHP_VERSION)/configure: | $(PHP_RELEASES)
94 cd $(srcdir) && awk -F "\t" '/^$(PHP)\t/{exit system($$3)}' <$|
95
96 $(srcdir)/php-$(PHP_VERSION)/Makefile: $(srcdir)/php-$(PHP_VERSION)/configure | $(PHP_RELEASES)
97 cd $(srcdir)/php-$(PHP_VERSION) && ./configure --cache-file=config.cache --prefix=$(prefix)
98
99 $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php: $(srcdir)/php-$(PHP_VERSION)/Makefile | $(PHP_RELEASES)
100 cd $(srcdir)/php-$(PHP_VERSION) && make -j $(JOBS) || make
101
102 $(bindir)/php: $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php | $(PHP_RELEASES)
103 cd $(srcdir)/php-$(PHP_VERSION) && make install
104
105 $(srcdir) $(extdir) $(with_config_file_scan_dir):
106 mkdir -p $@
107
108 ## -- PECL
109
110 .PHONY: pecl-check
111 pecl-check:
112 @if test -z "$(PECL)"; then echo "No pecl extension specified, e.g. PECL=pecl_http:http"; exit 1; fi
113
114 .PHONY: pecl-clean
115 pecl-clean:
116 @if test -d $(PECL_DIR); then cd $(PECL_DIR); make distclean || true; fi
117
118 .PHONY: pecl-rm
119 pecl-rm:
120 rm -f $(extdir)/$(PECL_SONAME).so
121
122 $(PECL_INI): | $(with_config_file_scan_dir)
123 touch $@
124
125 $(PECL_DIR)/config.m4:
126 mkdir -p $(PECL_DIR)
127 curl -Ss $(PECL_MIRROR)/$(PECL_EXTENSION)$(if $(PECL_VERSION),/$(PECL_VERSION)) | tar xz --strip-components 1 -C $(PECL_DIR)
128
129 $(PECL_DIR)/configure: $(PECL_DIR)/config.m4
130 cd $(PECL_DIR) && $(bindir)/phpize
131
132 $(PECL_DIR)/Makefile: $(PECL_DIR)/configure
133 cd $(PECL_DIR) && ./configure --cache-file=config.cache
134
135 $(PECL_DIR)/.libs/$(PECL_SONAME).so: $(PECL_DIR)/Makefile
136 cd $(PECL_DIR) && make -j $(JOBS) || make
137
138 $(extdir)/$(PECL_SONAME).so: $(PECL_DIR)/.libs/$(PECL_SONAME).so $(extdir)
139 cd $(PECL_DIR) && make install
140
141 .PHONY: pecl
142 pecl: pecl-check php $(extdir)/$(PECL_SONAME).so | $(PECL_INI)
143 grep -q extension=$(PECL_SONAME).so $(PECL_INI) || echo extension=$(PECL_SONAME).so >> $(PECL_INI)
144
145 .PHONY: ext-clean
146 ext-clean: pecl-clean
147
148 .PHONY: ext-rm
149 ext-rm: pecl-rm
150
151 .PHONY: ext
152 ext: pecl-check pecl
153 $(makdir)/check-packagexml.php package.xml
154
155 .PHONY: test
156 test: php
157 REPORT_EXIT_STATUS=1 $(bindir)/php run-tests.php -q -p $(bindir)/php --set-timeout 300 --show-diff tests
158
159 pharext/%: $(PECL_INI) php | $(srcdir)/../%.ext.phar
160 for phar in $|; do $(bindir)/php $$phar --prefix=$(prefix) --ini=$(PECL_INI); done
161
162 ## -- CPPCHECK
163
164 $(srcdir)/cppcheck-$(CPPCHECK_VERSION):
165 git clone https://github.com/danmar/cppcheck.git $@ && cd $@ && git checkout $(CPPCHECK_VERSION)
166
167 $(srcdir)/cppcheck-$(CPPCHECK_VERSION)/cppcheck: | $(srcdir)/cppcheck-$(CPPCHECK_VERSION)
168 cd $| && make -j $(JOBS) cppcheck
169
170 .PHONY: cppcheck
171 cppcheck: | $(srcdir)/cppcheck-$(CPPCHECK_VERSION)/cppcheck
172 $| $(CPPCHECK_ARGS) .