summaryrefslogtreecommitdiff
path: root/Examples/Globals
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-12-07 09:45:35 -0800
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-12-07 09:45:35 -0800
commit964d6274b0eba38df43d77b87c44bd728d2f0fb5 (patch)
tree5d275d7d8173837029d04dced0fde4b087703b81 /Examples/Globals
parentae8260d7d038b5fbde46f72751a3d3b1fc361c0b (diff)
Renamed ini files so that multiple examples can be loaded at the same time
Diffstat (limited to 'Examples/Globals')
-rw-r--r--Examples/Globals/30-globals.ini (renamed from Examples/Globals/30-phpcpp.ini)0
-rw-r--r--Examples/Globals/Makefile32
2 files changed, 32 insertions, 0 deletions
diff --git a/Examples/Globals/30-phpcpp.ini b/Examples/Globals/30-globals.ini
index 3b6ae4e..3b6ae4e 100644
--- a/Examples/Globals/30-phpcpp.ini
+++ b/Examples/Globals/30-globals.ini
diff --git a/Examples/Globals/Makefile b/Examples/Globals/Makefile
new file mode 100644
index 0000000..764fb5f
--- /dev/null
+++ b/Examples/Globals/Makefile
@@ -0,0 +1,32 @@
+CPP = g++
+RM = rm -f
+CPP_FLAGS = -Wall -c -I. -O2 -std=c++11
+
+PREFIX = /usr
+#Edit these lines to correspond with your own directories
+LIBRARY_DIR = ${PREFIX}/lib/php5/20121212
+PHP_CONFIG_DIR = /etc/php5/cli/conf.d
+
+LD = g++
+LD_FLAGS = -Wall -shared -O2
+RESULT = globals.so
+
+PHPINIFILE = 30-globals.ini
+
+SOURCES = $(wildcard *.cpp)
+OBJECTS = $(SOURCES:%.cpp=%.o)
+
+all: ${OBJECTS} ${RESULT}
+
+${RESULT}: ${OBJECTS}
+ ${LD} ${LD_FLAGS} -o $@ ${OBJECTS} -lphpcpp
+
+clean:
+ ${RM} *.obj *~* ${OBJECTS} ${RESULT}
+
+${OBJECTS}:
+ ${CPP} ${CPP_FLAGS} -fpic -o $@ ${@:%.o=%.cpp}
+
+install:
+ cp -f ${RESULT} ${LIBRARY_DIR}
+ cp -f ${PHPINIFILE} ${PHP_CONFIG_DIR}