bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / tomcat-connectors-1.2.32-src / native / jni / Makefile.linux
1 # Licensed to the Apache Software Foundation (ASF) under one or more
2 # contributor license agreements.  See the NOTICE file distributed with
3 # this work for additional information regarding copyright ownership.
4 # The ASF licenses this file to You under the Apache License, Version 2.0
5 # (the "License"); you may not use this file except in compliance with
6 # the License.  You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # Defines for example NSAPI programs running under SOLARIS
17
18 CC_CMD=gcc -D_REENTRANT
19 LD_SHAREDCMD=ld -G
20
21 all:
22
23 prepare:
24
25 OS_TYPE=linux
26 INCLUDEDIR=../common
27 JAVA_INCLUDE=$(JAVA_HOME)/include
28
29 JK_OBJS =  ../common/jk_map.o ../common/jk_util.o ../common/jk_pool.o jk_jnicb.o
30
31 INCLUDE_FLAGS=-I$(INCLUDEDIR) -I$(JAVA_INCLUDE) -I$(JAVA_INCLUDE)/$(OS_TYPE)
32 COMMON_DEFS=
33
34
35 all: jni_connect.so 
36
37
38 jni_connect.so: $(JK_OBJS)
39 #       $(MAKE) prepare
40         $(LD_SHAREDCMD) $(JK_OBJS) -o jni_connect.so $(EXTRA_LDDEFINES)
41
42 .c.o:
43         $(CC_CMD) $(COMMON_DEFS) $(INCLUDE_FLAGS) -c $< 
44
45 clean:
46         rm $(JK_OBJS)