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

« back to all changes in this revision

Viewing changes to Examples/lua/funcptr3/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2006-12-20 14:43:24 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20061220144324-bps3kb06xp5oy9w1
Tags: 1.3.31-1ubuntu1
* Merge from debian unstable, remaining changes:
  - drop support for pike
  - use php5 instead of php4
  - clean Runtime/ as well
  - force a few environment variables

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
TOP        = ../..
 
2
SWIG       = $(TOP)/../preinst-swig
 
3
CXXSRCS    = example.c
 
4
TARGET     = example
 
5
INTERFACE  = example.i
 
6
LIBS       = 
 
7
 
 
8
all::
 
9
        $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
 
10
        TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' lua
 
11
 
 
12
static::
 
13
        $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
 
14
        TARGET='mylua' INTERFACE='$(INTERFACE)' lua_static
 
15
 
 
16
clean::
 
17
        $(MAKE) -f $(TOP)/Makefile lua_clean
 
18
 
 
19
check: all