1#**************************************************************
2#
3#  Licensed to the Apache Software Foundation (ASF) under one
4#  or more contributor license agreements.  See the NOTICE file
5#  distributed with this work for additional information
6#  regarding copyright ownership.  The ASF licenses this file
7#  to you under the Apache License, Version 2.0 (the
8#  "License"); you may not use this file except in compliance
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22
23
24PRJ=..$/..
25
26PRJNAME=testtools
27TARGET=performancetest
28ENABLE_EXCEPTIONS=TRUE
29USE_DEFFILE=TRUE
30LIBTARGET=NO
31
32# --- Settings -----------------------------------------------------
33
34.INCLUDE :  settings.mk
35
36# ------------------------------------------------------------------
37
38LIB1TARGET=$(SLB)$/perftest.lib
39LIB1OBJFILES= \
40		$(SLO)$/ubtest.obj
41
42SHL1TARGET = perftest.uno
43
44SHL1VERSIONMAP = $(SOLARENV)$/src$/component.map
45
46SHL1STDLIBS= \
47		$(CPPULIB)		\
48		$(CPPUHELPERLIB)	\
49		$(SALLIB)
50
51SHL1LIBS=	$(LIB1TARGET)
52SHL1DEF=	$(MISC)$/$(SHL1TARGET).def
53DEF1NAME=	$(SHL1TARGET)
54
55# ---- test object ----
56
57LIB2TARGET=$(SLB)$/perfobj.lib
58LIB2OBJFILES= \
59		$(SLO)$/ubobject.obj
60
61SHL2TARGET = perfobj.uno
62
63SHL2VERSIONMAP = $(SOLARENV)$/src$/component.map
64
65SHL2STDLIBS= \
66		$(CPPULIB)		\
67		$(CPPUHELPERLIB)	\
68		$(SALLIB)
69
70SHL2LIBS=	$(LIB2TARGET)
71SHL2DEF=	$(MISC)$/$(SHL2TARGET).def
72DEF2NAME=	$(SHL2TARGET)
73
74# ---- pseudo uno bridge ----
75
76LIB3TARGET=$(SLB)$/pseudo.lib
77LIB3OBJFILES= \
78		$(SLO)$/pseudo.obj
79
80SHL3TARGET=pseudo_uno_uno
81
82SHL3VERSIONMAP = pseudo_uno_uno.map
83
84SHL3STDLIBS= \
85		$(CPPULIB)		\
86		$(SALLIB)
87
88SHL3LIBS=	$(LIB3TARGET)
89SHL3DEF=	$(MISC)$/$(SHL3TARGET).def
90DEF3NAME=	$(SHL3TARGET)
91
92# --- Targets ------------------------------------------------------
93
94.INCLUDE :	target.mk
95