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

« back to all changes in this revision

Viewing changes to Examples/GIFPlot/Guile/simple/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    =
 
4
SRCS       =
 
5
TARGET     = simple
 
6
INTERFACE  = simple.i
 
7
LIBS       = -L../.. -lgifplot
 
8
INCLUDE    = -I../../Include
 
9
 
 
10
all:: static
 
11
 
 
12
dynamic::
 
13
        $(MAKE) -f $(TOP)/Makefile TOP='$(TOP)' \
 
14
        SRCS='$(SRCS)' SWIG='$(SWIG)' \
 
15
        INCLUDE='$(INCLUDE)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
 
16
        TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' guile
 
17
 
 
18
static::
 
19
        $(MAKE) -f $(TOP)/Makefile TOP='$(TOP)' \
 
20
        SRCS='$(SRCS)' SWIG='$(SWIG)' \
 
21
        INCLUDE='$(INCLUDE)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
 
22
        TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' guile_static
 
23
 
 
24
clean::
 
25
        rm -f *_wrap* *.o *~ *.so gifguile .~* core *.gif
 
26
 
 
27
check: all