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

« back to all changes in this revision

Viewing changes to Examples/java/funcptr/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Thom May
  • Date: 2004-08-02 15:57:10 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040802155710-bm292q1d6x6tw7gc
Tags: 1.3.21-5ubuntu1
Fix linking for ruby, python, perl and tcl bindings

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
TOP        = ../..
 
2
SWIG       = $(TOP)/../swig
 
3
SRCS       = example.c
 
4
TARGET     = example
 
5
INTERFACE  = example.i
 
6
SWIGOPT    =
 
7
 
 
8
all::   java
 
9
 
 
10
java::
 
11
        $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
 
12
        SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' java
 
13
        javac *.java
 
14
 
 
15
clean::
 
16
        $(MAKE) -f $(TOP)/Makefile java_clean
 
17
 
 
18
check: all