diff options
| author | Dave Beazley <dave-swig@dabeaz.com> | 2002-11-30 22:01:28 +0000 |
|---|---|---|
| committer | Dave Beazley <dave-swig@dabeaz.com> | 2002-11-30 22:01:28 +0000 |
| commit | 12a43edc2df8853e8e0315f742e57be88f0c4269 (patch) | |
| tree | e3237f5f8c0a67c9bfa9bb5d6d095a739a49e4b2 /Examples/ruby/template/Makefile | |
| parent | 5fcae5eb66d377e1c3f81da7465c44a62295a72b (diff) | |
| download | swig-12a43edc2df8853e8e0315f742e57be88f0c4269.tar.gz | |
The great merge
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Examples/ruby/template/Makefile')
| -rw-r--r-- | Examples/ruby/template/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Examples/ruby/template/Makefile b/Examples/ruby/template/Makefile new file mode 100644 index 000000000..6b0d049a5 --- /dev/null +++ b/Examples/ruby/template/Makefile @@ -0,0 +1,20 @@ +TOP = ../.. +SWIG = $(TOP)/../swig +CXXSRCS = +TARGET = example +INTERFACE = example.i +LIBS = -lm +SWIGOPT = + +all:: + $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \ + SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' ruby_cpp + +static:: + $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \ + SWIGOPT='$(SWIGOPT)' TARGET='myruby' INTERFACE='$(INTERFACE)' ruby_cpp_static + +clean:: + $(MAKE) -f $(TOP)/Makefile ruby_clean + +check: all |
