office-gobmx/cpputools/source/unoexe/makefile.mk

92 lines
2.9 KiB
Makefile
Raw Normal View History

2000-09-18 10:18:56 -05:00
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 10:18:56 -05:00
#
# OpenOffice.org - a multi-platform office productivity suite
2000-09-18 10:18:56 -05:00
#
# This file is part of OpenOffice.org.
2000-09-18 10:18:56 -05:00
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
2000-09-18 10:18:56 -05:00
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
2000-09-18 10:18:56 -05:00
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
2000-09-18 10:18:56 -05:00
#
#*************************************************************************
PRJ=..$/..
PRJNAME=cpputools
TARGET=uno
LIBTARGET=NO
ENABLE_EXCEPTIONS=TRUE
# --- Settings -----------------------------------------------------
.INCLUDE : settings.mk
2000-11-13 08:43:24 -06:00
UNOUCRDEP=$(SOLARBINDIR)$/udkapi.rdb
UNOUCRRDB=$(SOLARBINDIR)$/udkapi.rdb
2000-09-18 10:18:56 -05:00
NO_OFFUH=TRUE
2001-05-04 08:05:43 -05:00
CPPUMAKERFLAGS+= -C
2000-09-18 10:18:56 -05:00
UNOTYPES= \
com.sun.star.uno.TypeClass \
com.sun.star.uno.XAggregation \
com.sun.star.uno.XWeak \
2001-05-10 07:05:49 -05:00
com.sun.star.uno.XComponentContext \
2000-09-18 10:18:56 -05:00
com.sun.star.lang.XTypeProvider \
com.sun.star.lang.XMain \
com.sun.star.lang.XInitialization \
com.sun.star.lang.XComponent \
com.sun.star.lang.XSingleServiceFactory \
2001-05-10 07:05:49 -05:00
com.sun.star.lang.XSingleComponentFactory \
2000-09-18 10:18:56 -05:00
com.sun.star.lang.XMultiServiceFactory \
2001-05-10 07:05:49 -05:00
com.sun.star.lang.XMultiComponentFactory \
2000-09-18 10:18:56 -05:00
com.sun.star.container.XSet \
2001-05-10 07:05:49 -05:00
com.sun.star.container.XHierarchicalNameAccess \
2000-09-18 10:18:56 -05:00
com.sun.star.loader.XImplementationLoader \
com.sun.star.registry.XSimpleRegistry \
com.sun.star.registry.XRegistryKey \
com.sun.star.connection.XAcceptor \
com.sun.star.connection.XConnection \
com.sun.star.bridge.XBridgeFactory \
com.sun.star.bridge.XBridge
# --- Files --------------------------------------------------------
DEPOBJFILES=$(OBJ)$/unoexe.obj
2000-09-18 10:18:56 -05:00
APP1TARGET=$(TARGET)
APP1OBJS=$(DEPOBJFILES)
APP1RPATH=UREBIN
2000-09-18 10:18:56 -05:00
# Include all relevant (see ure/source/README) dynamic libraries, so that C++
# UNO components running in the uno executable have a defined environment
# (stlport, unxlngi6 libstdc++.so.6, and wntmsci10 uwinapi.dll are already
# included via APP1STDLIB, unxlngi6 libgcc_s.so.1 and wntmsci10 msvcr71.dll and
# msvcp71.dll are magic---TODO):
2000-09-18 10:18:56 -05:00
APP1STDLIBS= \
$(SALLIB) \
$(SALHELPERLIB) \
2000-09-18 10:18:56 -05:00
$(CPPULIB) \
$(CPPUHELPERLIB)\
$(LIBXML2LIB)
.IF "$(OS)" == "WNT"
APP1STDLIBS += $(UNICOWSLIB)
.ENDIF
2000-09-18 10:18:56 -05:00
.INCLUDE : target.mk