aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2008-12-06 21:55:15 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2008-12-06 21:55:15 +0000
commita5fcddceca1f55432928af02530c873cb7992382 (patch)
treec2780cdb3d29de953dd733ed7abbbf6ed0859b05
parentbcc796f676ef7e871cdc44a096d74f1da92e232d (diff)
downloadswig-a5fcddceca1f55432928af02530c873cb7992382.tar.gz
modify build system to use php instead of php4
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10968 626c5289-ae23-0410-ae9c-e8d60b6d4f22
-rw-r--r--Examples/GIFPlot/Php/check.list (renamed from Examples/GIFPlot/Php4/check.list)0
-rw-r--r--Examples/GIFPlot/Php/full/Makefile (renamed from Examples/GIFPlot/Php4/full/Makefile)4
-rw-r--r--Examples/GIFPlot/Php/full/README (renamed from Examples/GIFPlot/Php4/full/README)0
-rw-r--r--Examples/GIFPlot/Php/full/cmap (renamed from Examples/GIFPlot/Php4/full/cmap)bin768 -> 768 bytes
-rw-r--r--Examples/GIFPlot/Php/full/gifplot.i (renamed from Examples/GIFPlot/Php4/full/gifplot.i)0
-rw-r--r--Examples/GIFPlot/Php/full/runme.php (renamed from Examples/GIFPlot/Php4/full/runme.php4)0
-rw-r--r--Examples/GIFPlot/Php/shadow/Makefile (renamed from Examples/GIFPlot/Php4/shadow/Makefile)4
-rw-r--r--Examples/GIFPlot/Php/shadow/README (renamed from Examples/GIFPlot/Php4/shadow/README)0
-rw-r--r--Examples/GIFPlot/Php/shadow/cmap (renamed from Examples/GIFPlot/Php4/shadow/cmap)bin768 -> 768 bytes
-rw-r--r--Examples/GIFPlot/Php/shadow/runme.php (renamed from Examples/GIFPlot/Php4/shadow/runme.php4)0
-rw-r--r--Examples/GIFPlot/Php/simple/Makefile (renamed from Examples/GIFPlot/Php4/simple/Makefile)4
-rw-r--r--Examples/GIFPlot/Php/simple/README (renamed from Examples/GIFPlot/Php4/simple/README)0
-rw-r--r--Examples/GIFPlot/Php/simple/runme.php (renamed from Examples/GIFPlot/Php4/simple/runme.php4)0
-rw-r--r--Examples/GIFPlot/Php/simple/simple.i (renamed from Examples/GIFPlot/Php4/simple/simple.i)0
14 files changed, 6 insertions, 6 deletions
diff --git a/Examples/GIFPlot/Php4/check.list b/Examples/GIFPlot/Php/check.list
index e75ee586a..e75ee586a 100644
--- a/Examples/GIFPlot/Php4/check.list
+++ b/Examples/GIFPlot/Php/check.list
diff --git a/Examples/GIFPlot/Php4/full/Makefile b/Examples/GIFPlot/Php/full/Makefile
index 3aa632b99..e33e7a730 100644
--- a/Examples/GIFPlot/Php4/full/Makefile
+++ b/Examples/GIFPlot/Php/full/Makefile
@@ -10,10 +10,10 @@ INCLUDES = -I../../Include
all::
$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
INCLUDES='$(INCLUDES)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
- TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' php4
+ TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' php
clean::
- $(MAKE) -f $(TOP)/Makefile php4_clean
+ $(MAKE) -f $(TOP)/Makefile php_clean
rm -f *.gif
rm -f php_gifplot.h
diff --git a/Examples/GIFPlot/Php4/full/README b/Examples/GIFPlot/Php/full/README
index f8d38d9af..f8d38d9af 100644
--- a/Examples/GIFPlot/Php4/full/README
+++ b/Examples/GIFPlot/Php/full/README
diff --git a/Examples/GIFPlot/Php4/full/cmap b/Examples/GIFPlot/Php/full/cmap
index a20c331a9..a20c331a9 100644
--- a/Examples/GIFPlot/Php4/full/cmap
+++ b/Examples/GIFPlot/Php/full/cmap
Binary files differ
diff --git a/Examples/GIFPlot/Php4/full/gifplot.i b/Examples/GIFPlot/Php/full/gifplot.i
index 5a7f5008f..5a7f5008f 100644
--- a/Examples/GIFPlot/Php4/full/gifplot.i
+++ b/Examples/GIFPlot/Php/full/gifplot.i
diff --git a/Examples/GIFPlot/Php4/full/runme.php4 b/Examples/GIFPlot/Php/full/runme.php
index de5371ee8..de5371ee8 100644
--- a/Examples/GIFPlot/Php4/full/runme.php4
+++ b/Examples/GIFPlot/Php/full/runme.php
diff --git a/Examples/GIFPlot/Php4/shadow/Makefile b/Examples/GIFPlot/Php/shadow/Makefile
index 5627e53a0..df8ee30c0 100644
--- a/Examples/GIFPlot/Php4/shadow/Makefile
+++ b/Examples/GIFPlot/Php/shadow/Makefile
@@ -10,10 +10,10 @@ INCLUDES = -I../../Include
all::
$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
INCLUDES='$(INCLUDES)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
- TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' php4
+ TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' php
clean::
- $(MAKE) -f $(TOP)/Makefile php4_clean
+ $(MAKE) -f $(TOP)/Makefile php_clean
rm -f *.gif
check: all
diff --git a/Examples/GIFPlot/Php4/shadow/README b/Examples/GIFPlot/Php/shadow/README
index 3e91f7d59..3e91f7d59 100644
--- a/Examples/GIFPlot/Php4/shadow/README
+++ b/Examples/GIFPlot/Php/shadow/README
diff --git a/Examples/GIFPlot/Php4/shadow/cmap b/Examples/GIFPlot/Php/shadow/cmap
index a20c331a9..a20c331a9 100644
--- a/Examples/GIFPlot/Php4/shadow/cmap
+++ b/Examples/GIFPlot/Php/shadow/cmap
Binary files differ
diff --git a/Examples/GIFPlot/Php4/shadow/runme.php4 b/Examples/GIFPlot/Php/shadow/runme.php
index 3dffba050..3dffba050 100644
--- a/Examples/GIFPlot/Php4/shadow/runme.php4
+++ b/Examples/GIFPlot/Php/shadow/runme.php
diff --git a/Examples/GIFPlot/Php4/simple/Makefile b/Examples/GIFPlot/Php/simple/Makefile
index 6903bec0b..e60b641fa 100644
--- a/Examples/GIFPlot/Php4/simple/Makefile
+++ b/Examples/GIFPlot/Php/simple/Makefile
@@ -10,10 +10,10 @@ INCLUDES = -I../../Include
all::
$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
INCLUDES='$(INCLUDES)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
- TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' php4
+ TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' php
clean::
- $(MAKE) -f $(TOP)/Makefile php4_clean
+ $(MAKE) -f $(TOP)/Makefile php_clean
rm -f *.gif
rm -f php_simple.h
diff --git a/Examples/GIFPlot/Php4/simple/README b/Examples/GIFPlot/Php/simple/README
index c2c799a70..c2c799a70 100644
--- a/Examples/GIFPlot/Php4/simple/README
+++ b/Examples/GIFPlot/Php/simple/README
diff --git a/Examples/GIFPlot/Php4/simple/runme.php4 b/Examples/GIFPlot/Php/simple/runme.php
index cf21a0927..cf21a0927 100644
--- a/Examples/GIFPlot/Php4/simple/runme.php4
+++ b/Examples/GIFPlot/Php/simple/runme.php
diff --git a/Examples/GIFPlot/Php4/simple/simple.i b/Examples/GIFPlot/Php/simple/simple.i
index 457bc4c09..457bc4c09 100644
--- a/Examples/GIFPlot/Php4/simple/simple.i
+++ b/Examples/GIFPlot/Php/simple/simple.i