blob: 9a3dec38a91cdde3ce9162486cd992ba2897b91d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
SRCDIR := $(shell pwd)
NAME := php-extras
INCL1 := $(shell php-config --includes)
INCL2 := -I $(shell php-config --include-dir)/sapi/embed
LIBS := -lphp5 $(shell php-config --libs)
include ../../common/Makefile
tembed: tembed.c
gcc -Wall $(INCL1) $(INCL2) tembed.c $(LIBS) -o tembed
debug:
time rpmbuild $(RPMDEFINES) --with debug -bb $(NAME).spec
srpm:
rpmbuild $(RPMDEFINES) $(SRCDEFINES) --define "scl php55" --define "scl_prefix php55-" -bs $(NAME).spec
|