diff --git a/SWIG/Examples/GIFPlot/Php/full/Makefile b/SWIG/Examples/GIFPlot/Php/full/Makefile deleted file mode 100644 index 880d05303..000000000 --- a/SWIG/Examples/GIFPlot/Php/full/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -TOP = ../../.. -SWIG = $(TOP)/../swig -SWIGOPT = -I../../Include -noproxy -SRCS = -TARGET = php_gifplot -INTERFACE = gifplot.i -LIBS = -L../.. -lgifplot -lm -INCLUDES = -I../../Include - -all:: - $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \ - INCLUDES='$(INCLUDES)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \ - TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' php4 - -clean:: - $(MAKE) -f $(TOP)/Makefile php4_clean - rm -f *.gif - -check: all diff --git a/SWIG/Examples/GIFPlot/Php/full/README b/SWIG/Examples/GIFPlot/Php/full/README deleted file mode 100644 index f8d38d9af..000000000 --- a/SWIG/Examples/GIFPlot/Php/full/README +++ /dev/null @@ -1,4 +0,0 @@ -This example runs the entire gifplot.h header file through SWIG without -any changes. The script 'runme.php3' does something a little more -interesting. You'll have to go look at the header file to get a complete -listing of the functions. diff --git a/SWIG/Examples/GIFPlot/Php/full/cmap b/SWIG/Examples/GIFPlot/Php/full/cmap deleted file mode 100644 index a20c331a9..000000000 Binary files a/SWIG/Examples/GIFPlot/Php/full/cmap and /dev/null differ diff --git a/SWIG/Examples/GIFPlot/Php/full/gifplot.i b/SWIG/Examples/GIFPlot/Php/full/gifplot.i deleted file mode 100644 index 5a7f5008f..000000000 --- a/SWIG/Examples/GIFPlot/Php/full/gifplot.i +++ /dev/null @@ -1,15 +0,0 @@ -/* Oh what the heck, let's just grab the whole darn header file - and see what happens. */ - -%module gifplot -%{ - -/* Note: You still need this part because the %include directive - merely causes SWIG to interpret the contents of a file. It doesn't - include the right include headers for the resulting C code */ - -#include "gifplot.h" - -%} - -%include gifplot.h diff --git a/SWIG/Examples/GIFPlot/Php/full/runme.php4 b/SWIG/Examples/GIFPlot/Php/full/runme.php4 deleted file mode 100644 index de5371ee8..000000000 --- a/SWIG/Examples/GIFPlot/Php/full/runme.php4 +++ /dev/null @@ -1,78 +0,0 @@ - 239) { $c = 239; } - Plot3D_solidquad($p3, $x,$y,$z1,$x+$dx,$y,$z2,$x+$dx,$y+$dy,$z3,$x,$y+$dy,$z4,$c+16); - $y = $y + $dy; - } - $x = $x + $dx; - } -} - -print "Making a nice 3D plot...\n"; -drawsolid(); - -FrameBuffer_writeGIF($frame, $cmap,"image.gif"); -print "Wrote image.gif\n"; - -?>