~ubuntu-branches/ubuntu/warty/swig1.3/warty

« back to all changes in this revision

Viewing changes to Examples/GIFPlot/Ruby/shadow/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Landschoff
  • Date: 2002-03-29 01:56:07 UTC
  • Revision ID: james.westby@ubuntu.com-20020329015607-c0wt03xu8oy9ioj7
Tags: upstream-1.3.11
ImportĀ upstreamĀ versionĀ 1.3.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
TOP        = ../../..
 
2
SWIG       = $(TOP)/../swig
 
3
SWIGOPT    = -I../../Interface
 
4
SRCS       =
 
5
TARGET     = gifplot
 
6
INTERFACE  = gifplot.i
 
7
LIBS       = -L../.. -lgifplot
 
8
INCLUDE    = -I../../Include
 
9
 
 
10
all::
 
11
        $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
 
12
        INCLUDE='$(INCLUDE)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
 
13
        TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' ruby
 
14
 
 
15
static::
 
16
        $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
 
17
        INCLUDE='$(INCLUDE)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
 
18
        TARGET='myruby' INTERFACE='$(INTERFACE)' ruby_static
 
19
 
 
20
clean::
 
21
        rm -f *_wrap* *.o *~ *.so myruby .~* core *.gif
 
22
 
 
23
check: all