summaryrefslogtreecommitdiff
path: root/Examples/php/pragmas/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/php/pragmas/Makefile')
-rw-r--r--Examples/php/pragmas/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/Examples/php/pragmas/Makefile b/Examples/php/pragmas/Makefile
new file mode 100644
index 000000000..23e2675d7
--- /dev/null
+++ b/Examples/php/pragmas/Makefile
@@ -0,0 +1,24 @@
+TOP = ../..
+SWIG = $(TOP)/../preinst-swig
+SRCS =
+TARGET = example
+INTERFACE = example.i
+LIBS =
+SWIGOPT =
+
+all::
+ $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
+ SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' \
+ php
+
+static::
+ $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
+ SWIGOPT='$(SWIGOPT)' TARGET='myphp' INTERFACE='$(INTERFACE)' \
+ php_static
+
+clean::
+ $(MAKE) -f $(TOP)/Makefile php_clean
+ rm -f $(TARGET).php
+
+check: all
+ $(MAKE) -f $(TOP)/Makefile php_run