bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / tomcat-connectors-1.2.32-src / native / jni / Makefile.solaris
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 -DSOLARIS -D_REENTRANT
19 LD_SHAREDCMD=ld -G
20
21 all:
22 prepare:
23
24 OS_TYPE=solaris
25 INCLUDEDIR=../common
26 JAVA_INCLUDE=$(JAVA_HOME)/include
27
28 JK_OBJS =  ../common/jk_map.o ../common/jk_util.o ../common/jk_pool.o jk_jnicb.o
29
30 INCLUDE_FLAGS=-I$(INCLUDEDIR) -I$(JAVA_INCLUDE) -I$(JAVA_INCLUDE)/$(OS_TYPE)
31 COMMON_DEFS=
32
33
34 all: jni_connect.so 
35
36
37 jni_connect.so: $(JK_OBJS)
38         $(MAKE) prepare
39         $(LD_SHAREDCMD) $(JK_OBJS) -o jni_connect.so $(EXTRA_LDDEFINES)
40
41 .c.o:
42         $(CC_CMD) $(COMMON_DEFS) $(INCLUDE_FLAGS) -c $< 
43
44 clean:
45         rm $(JK_OBJS)