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

« back to all changes in this revision

Viewing changes to Examples/tcl/class/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
CXXSRCS    = example.cxx
 
4
TARGET     = example
 
5
INTERFACE  = example.i
 
6
LIBS       = -lm
 
7
 
 
8
all::
 
9
        $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
 
10
        TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' tcl_cpp
 
11
 
 
12
static::
 
13
        $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
 
14
        TARGET='mytclsh' INTERFACE='$(INTERFACE)' tclsh_cpp_static
 
15
 
 
16
clean::
 
17
        rm -f *_wrap* *.o *~ *.so mytclsh *.pyc .~* core
 
18
 
 
19
check: all