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

« back to all changes in this revision

Viewing changes to Examples/python/swigrun/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-12-05 01:16:04 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051205011604-ygx904it6413k3go
Tags: 1.3.27-1ubuntu1
Resynchronise with Debian again, for the new subversion packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
SWIGOPT    = 
8
8
 
9
9
all::
10
 
        $(SWIG) -co swigrun.swg
11
 
        $(SWIG) -o pyrun.swg -co python/pyrun.swg  
12
 
        $(SWIG) -o runtime.swg -co runtime.swg 
 
10
        $(SWIG) -python -external-runtime
13
11
        $(MAKE) -f $(TOP)/Makefile $(SWIGLIB) CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
14
12
        SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' python_cpp
15
 
        rm -f *.swg
16
13
 
17
14
static::
18
15
        $(MAKE) -f $(TOP)/Makefile $(SWIGLIB) CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
21
18
clean::
22
19
        $(MAKE) -f $(TOP)/Makefile python_clean
23
20
        rm -f $(TARGET).py
24
 
        rm -f *.swg
 
21
        rm -f swigpyrun.h
25
22
 
26
23
check: all
27
24