From 1956cba3746a4ca4d40c83167f3535b8d4cf0d3f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 26 May 2020 14:11:06 +0200 Subject: update to 7.3.19RC1 --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 78ac8ed..01bd11c 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,10 @@ SRCDIR := $(shell pwd) NAME := $(shell basename $(SRCDIR)) -INCL1 := $(shell php-config --includes) -INCL2 := -I $(shell php-config --include-dir)/sapi/embed +INCL := $(shell php-config --includes) LIBE := -lphp7 LIBS := -lphp7 $(shell php-config --libs) include ../../common/Makefile tembed: tembed.c - gcc -Wall $(INCL1) $(INCL2) tembed.c $(LIBE) -o tembed + gcc -Wall $(INCL) tembed.c $(LIBS) -o tembed -- cgit