Squashed commit of the following:
[m6w6/travis-pecl] / Makefile
1 export
2
3 PHP ?= 5.6
4 JOBS ?= 2
5 PHP_MIRROR ?= http://us1.php.net/distributions/
6
7 ifdef TRAVIS_JOB_NUMBER
8 prefix ?= $(HOME)/job-$(TRAVIS_JOB_NUMBER)
9 else
10 prefix ?= $(HOME)
11 endif
12 exec_prefix ?= $(prefix)
13 bindir = $(exec_prefix)/bin
14 srcdir := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
15 ifdef TRAVIS_BUILD_DIR
16 curdir ?= $(TRAVIS_BUILD_DIR)
17 else
18 # CURDIR is a make builtin
19 curdir ?= $(CURDIR)
20 endif
21
22 enable_maintainer_zts ?= no
23 enable_debug ?= no
24 enable_all ?= no
25 with_config_file_scan_dir ?= $(prefix)/etc/php.d
26
27 with_php_config ?= $(bindir)/php-config
28 extdir = $(shell test -x $(with_php_config) && $(with_php_config) --extension-dir)
29
30 PECL_MIRROR ?= http://pecl.php.net/get/
31 PECL_WORDS := $(subst :, ,$(PECL))
32 PECL_EXTENSION ?= $(word 1,$(PECL_WORDS))
33 PECL_SONAME ?= $(if $(word 2,$(PECL_WORDS)),$(word 2,$(PECL_WORDS)),$(PECL_EXTENSION))
34 PECL_VERSION ?= $(word 3,$(PECL_WORDS))
35 PECL_INI = $(with_config_file_scan_dir)/pecl.ini
36 PECL_DIR := $(if $(filter ext ext%, $(MAKECMDGOALS)), $(curdir), $(srcdir)/pecl-$(PECL_EXTENSION))
37
38 PHP_VERSION_MAJOR = $(firstword $(subst ., ,$(PHP)))
39 PHP_VERSIONS_JSON = $(srcdir)/php-versions$(PHP_VERSION_MAJOR).json
40 PHP_VERSION ?= $(shell test -e $(PHP_VERSIONS_JSON) && cat $(PHP_VERSIONS_JSON) | $(srcdir)/php-version.php $(PHP))
41
42 .SUFFIXES:
43
44 .PHONY: all
45 all: php
46
47 ## -- PHP
48
49 .PHONY: clean
50 clean:
51 @if test -d $(srcdir)/php-$(PHP_VERSION); then cd $(srcdir)/php-$(PHP_VERSION); make distclean || true; fi
52
53 .PHONY: check
54 check: $(PHP_VERSIONS_JSON)
55 @if test -z "$(PHP)"; then echo "No php version specified, e.g. PHP=5.6"; exit 1; fi
56
57 .PHONY: reconf
58 reconf: check $(srcdir)/php-$(PHP_VERSION)/configure
59 cd $(srcdir)/php-$(PHP_VERSION) && ./configure -C --prefix=$(prefix)
60
61 .PHONY: php
62 php: check $(bindir)/php
63
64 $(PHP_VERSIONS_JSON): $(srcdir)/php-version.php
65 curl -Sso $@ "http://php.net/releases/index.php?json&version=$(PHP_VERSION_MAJOR)&max=-1"
66
67 $(srcdir)/php-$(PHP_VERSION)/configure: | $(PHP_VERSIONS_JSON)
68 if test $(PHP_VERSION) = "master"; then \
69 cd $(srcdir) && git clone --depth 1 -b master https://github.com/php/php-src php-master && cd php-master && ./buildconf; \
70 else \
71 curl -Ss $(PHP_MIRROR)/php-$(PHP_VERSION).tar.bz2 | tar xj -C $(srcdir); \
72 fi
73
74 $(srcdir)/php-$(PHP_VERSION)/Makefile: $(srcdir)/php-$(PHP_VERSION)/configure | $(PHP_VERSIONS_JSON)
75 cd $(srcdir)/php-$(PHP_VERSION) && ./configure -C --prefix=$(prefix)
76
77 $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php: $(srcdir)/php-$(PHP_VERSION)/Makefile | $(PHP_VERSIONS_JSON)
78 cd $(srcdir)/php-$(PHP_VERSION) && make -j $(JOBS) || make
79
80 $(bindir)/php: $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php | $(PHP_VERSIONS_JSON)
81 cd $(srcdir)/php-$(PHP_VERSION) && make install
82
83 $(with_config_file_scan_dir):
84 mkdir -p $@
85
86 ## -- PECL
87
88 .PHONY: pecl-check
89 pecl-check:
90 @if test -z "$(PECL)"; then echo "No pecl extension specified, e.g. PECL=pecl_http:http"; exit 1; fi
91
92 .PHONY: pecl-clean
93 pecl-clean:
94 @if test -d $(PECL_DIR); then cd $(PECL_DIR); make distclean || true; fi
95
96 .PHONY: pecl-rm
97 pecl-rm:
98 rm -f $(extdir)/$(PECL_SONAME).so
99
100 $(PECL_INI): | $(with_config_file_scan_dir)
101 touch $@
102
103 $(PECL_DIR)/config.m4:
104 mkdir -p $(PECL_DIR)
105 curl -Ss $(PECL_MIRROR)/$(PECL_EXTENSION)$(if $(PECL_VERSION),/$(PECL_VERSION)) | tar xz --strip-components 1 -C $(PECL_DIR)
106
107 $(PECL_DIR)/configure: $(PECL_DIR)/config.m4
108 cd $(PECL_DIR) && $(bindir)/phpize
109
110 $(PECL_DIR)/Makefile: $(PECL_DIR)/configure
111 cd $(PECL_DIR) && ./configure -C
112
113 $(PECL_DIR)/.libs/$(PECL_SONAME).so: $(PECL_DIR)/Makefile
114 cd $(PECL_DIR) && make -j $(JOBS) || make
115
116 $(extdir)/$(PECL_SONAME).so: $(PECL_DIR)/.libs/$(PECL_SONAME).so
117 cd $(PECL_DIR) && make install
118
119 .PHONY: pecl
120 pecl: pecl-check php $(extdir)/$(PECL_SONAME).so | $(PECL_INI)
121 grep -q extension=$(PECL_SONAME).so $(PECL_INI) || echo extension=$(PECL_SONAME).so >> $(PECL_INI)
122
123 .PHONY: ext-clean
124 ext-clean: pecl-clean
125
126 .PHONY: ext-rm
127 ext-rm: pecl-rm
128
129 .PHONY: ext
130 ext: pecl-check pecl
131 $(srcdir)/check-packagexml.php package.xml
132
133 .PHONY: php
134 test: php
135 REPORT_EXIT_STATUS=1 $(bindir)/php run-tests.php -q -p $(bindir)/php --set-timeout 300 --show-diff tests
136
137 pharext/%: $(PECL_INI) php | $(srcdir)/../%.ext.phar
138 for phar in $|; do $(bindir)/php $$phar --prefix=$(prefix) --ini=$(PECL_INI); done