~ubuntu-branches/ubuntu/oneiric/libapache-mod-jk/oneiric

« back to all changes in this revision

Viewing changes to native/jni/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2006-08-05 16:30:53 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060805163053-myf66gm6j1a21ps6
Tags: 1:1.2.18-1ubuntu1
Merge from Debian unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
OEXT=.lo
 
2
include @APACHE_CONFIG_VARS@
 
3
 
 
4
JK=../common/
 
5
COMMON_OBJECTS=${JK}jk_map${OEXT} ${JK}jk_util${OEXT} ${JK}jk_pool${OEXT}
 
6
JNI_OBJECTS=jk_jnicb${OEXT} ${COMMON_OBJECTS}
 
7
 
 
8
 
 
9
JAVA_INCL=-I @JAVA_HOME@/include -I @JAVA_HOME@/include/@OS@ -I../common
 
10
CFLAGS=@apache_include@ @CFLAGS@ ${JAVA_INCL} -D_REENTRANT 
 
11
 
 
12
include ../scripts/build/rules.mk
 
13
 
 
14
all: Makefile jni_connect.so 
 
15
 
 
16
Makefile: Makefile.in
 
17
        echo Regenerating Makefile
 
18
        ( cd ..; ./config.status )
 
19
 
 
20
jk_jnicb.la: ${JNI_OBJECTS}
 
21
        $(LIBTOOL) --mode=link $(COMPILE) -module -o $@ -rpath `pwd` -g -O2 -avoid-version ${JNI_OBJECTS} 
 
22
 
 
23
jni_connect.so: jk_jnicb.la
 
24
        $(LIBTOOL) --mode=install cp $< `pwd`/jni_connect.so
 
25
 
 
26
install:
 
27
 
 
28
clean:
 
29
        rm -f *.o *.lo *.a *.la *.so *.so.* *.slo
 
30
        rm -rf .libs