summaryrefslogtreecommitdiff
path: root/Examples/perl5/multiple_inheritance/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/perl5/multiple_inheritance/Makefile')
-rw-r--r--Examples/perl5/multiple_inheritance/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Examples/perl5/multiple_inheritance/Makefile b/Examples/perl5/multiple_inheritance/Makefile
new file mode 100644
index 0000000..fcca384
--- /dev/null
+++ b/Examples/perl5/multiple_inheritance/Makefile
@@ -0,0 +1,19 @@
+TOP = ../..
+SWIG = $(TOP)/../preinst-swig
+CXXSRCS =
+TARGET = example
+INTERFACE = example.i
+LIBS =
+
+all::
+ $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
+ TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' perl5_cpp
+
+static::
+ $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
+ TARGET='myperl' INTERFACE='$(INTERFACE)' perl5_cpp_static
+
+clean::
+ $(MAKE) -f $(TOP)/Makefile perl5_clean
+
+check: all