xref: /AOO41X/main/cpputools/source/unoexe/makefile.mk (revision b597708ba18998e5b62934c916addb8de3415a8a)
17871dc3eSAndrew Rist#**************************************************************
2cdf0e10cSrcweir#
37871dc3eSAndrew Rist#  Licensed to the Apache Software Foundation (ASF) under one
47871dc3eSAndrew Rist#  or more contributor license agreements.  See the NOTICE file
57871dc3eSAndrew Rist#  distributed with this work for additional information
67871dc3eSAndrew Rist#  regarding copyright ownership.  The ASF licenses this file
77871dc3eSAndrew Rist#  to you under the Apache License, Version 2.0 (the
87871dc3eSAndrew Rist#  "License"); you may not use this file except in compliance
97871dc3eSAndrew Rist#  with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir#
117871dc3eSAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir#
137871dc3eSAndrew Rist#  Unless required by applicable law or agreed to in writing,
147871dc3eSAndrew Rist#  software distributed under the License is distributed on an
157871dc3eSAndrew Rist#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
167871dc3eSAndrew Rist#  KIND, either express or implied.  See the License for the
177871dc3eSAndrew Rist#  specific language governing permissions and limitations
187871dc3eSAndrew Rist#  under the License.
19cdf0e10cSrcweir#
207871dc3eSAndrew Rist#**************************************************************
217871dc3eSAndrew Rist
227871dc3eSAndrew Rist
23cdf0e10cSrcweirPRJ=..$/..
24cdf0e10cSrcweir
25cdf0e10cSrcweirPRJNAME=cpputools
26cdf0e10cSrcweirTARGET=uno
27cdf0e10cSrcweirLIBTARGET=NO
28cdf0e10cSrcweirENABLE_EXCEPTIONS=TRUE
29cdf0e10cSrcweir
30cdf0e10cSrcweir# --- Settings -----------------------------------------------------
31cdf0e10cSrcweir
32cdf0e10cSrcweir.INCLUDE :  settings.mk
33cdf0e10cSrcweir
34cdf0e10cSrcweirUNOUCRDEP=$(SOLARBINDIR)$/udkapi.rdb
35cdf0e10cSrcweirUNOUCRRDB=$(SOLARBINDIR)$/udkapi.rdb
36cdf0e10cSrcweir
37cdf0e10cSrcweirNO_OFFUH=TRUE
38cdf0e10cSrcweirCPPUMAKERFLAGS+= -C
39cdf0e10cSrcweir
40cdf0e10cSrcweirUNOTYPES= \
41cdf0e10cSrcweir 	com.sun.star.uno.TypeClass \
42cdf0e10cSrcweir 	com.sun.star.uno.XAggregation \
43cdf0e10cSrcweir 	com.sun.star.uno.XWeak \
44cdf0e10cSrcweir 	com.sun.star.uno.XComponentContext \
45cdf0e10cSrcweir 	com.sun.star.lang.XTypeProvider \
46cdf0e10cSrcweir	com.sun.star.lang.XMain \
47cdf0e10cSrcweir 	com.sun.star.lang.XInitialization \
48cdf0e10cSrcweir 	com.sun.star.lang.XComponent \
49cdf0e10cSrcweir 	com.sun.star.lang.XSingleServiceFactory \
50cdf0e10cSrcweir 	com.sun.star.lang.XSingleComponentFactory \
51cdf0e10cSrcweir 	com.sun.star.lang.XMultiServiceFactory \
52cdf0e10cSrcweir 	com.sun.star.lang.XMultiComponentFactory \
53cdf0e10cSrcweir 	com.sun.star.container.XSet \
54cdf0e10cSrcweir 	com.sun.star.container.XHierarchicalNameAccess \
55cdf0e10cSrcweir	com.sun.star.loader.XImplementationLoader \
56cdf0e10cSrcweir	com.sun.star.registry.XSimpleRegistry \
57cdf0e10cSrcweir	com.sun.star.registry.XRegistryKey \
58cdf0e10cSrcweir	com.sun.star.connection.XAcceptor \
59cdf0e10cSrcweir	com.sun.star.connection.XConnection \
60cdf0e10cSrcweir	com.sun.star.bridge.XBridgeFactory \
61cdf0e10cSrcweir	com.sun.star.bridge.XBridge
62cdf0e10cSrcweir
63cdf0e10cSrcweir# --- Files --------------------------------------------------------
64cdf0e10cSrcweir
65cdf0e10cSrcweirDEPOBJFILES=$(OBJ)$/unoexe.obj
66cdf0e10cSrcweir
67cdf0e10cSrcweirAPP1TARGET=$(TARGET)
68cdf0e10cSrcweirAPP1OBJS=$(DEPOBJFILES)
69cdf0e10cSrcweirAPP1RPATH=UREBIN
70cdf0e10cSrcweir
71cdf0e10cSrcweir# Include all relevant (see ure/source/README) dynamic libraries, so that C++
72cdf0e10cSrcweir# UNO components running in the uno executable have a defined environment
73*b597708bSHerbert Dürr# (unxlngi6 libstdc++.so.6, and wntmsci10 uwinapi.dll are already
74cdf0e10cSrcweir# included via APP1STDLIB, unxlngi6 libgcc_s.so.1 and wntmsci10 msvcr71.dll and
75cdf0e10cSrcweir# msvcp71.dll are magic---TODO):
76cdf0e10cSrcweirAPP1STDLIBS= \
77cdf0e10cSrcweir	$(SALLIB)		\
78cdf0e10cSrcweir    $(SALHELPERLIB) \
79cdf0e10cSrcweir	$(CPPULIB)		\
80cdf0e10cSrcweir	$(CPPUHELPERLIB)\
81cdf0e10cSrcweir    $(LIBXML2LIB)
82cdf0e10cSrcweir
83cdf0e10cSrcweir.INCLUDE :  target.mk
84cdf0e10cSrcweir
85