diff options
Diffstat (limited to 'Examples/perl5/class/Makefile')
| -rw-r--r-- | Examples/perl5/class/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Examples/perl5/class/Makefile b/Examples/perl5/class/Makefile new file mode 100644 index 0000000..f533617 --- /dev/null +++ b/Examples/perl5/class/Makefile @@ -0,0 +1,19 @@ +TOP = ../.. +SWIG = $(TOP)/../preinst-swig +CXXSRCS = example.cxx +TARGET = example +INTERFACE = example.i +LIBS = -lm + +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 |
