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

99 lines
3.1 KiB
Makefile
Raw Normal View History

2000-09-18 10:18:56 -05:00
#*************************************************************************
#
# OpenOffice.org - a multi-platform office productivity suite
2000-09-18 10:18:56 -05:00
#
# $RCSfile: makefile.mk,v $
2000-09-18 10:18:56 -05:00
#
# $Revision: 1.13 $
2000-09-18 10:18:56 -05:00
#
# last change: $Author: vg $ $Date: 2006-05-24 14:30:40 $
2000-09-18 10:18:56 -05:00
#
# The Contents of this file are made available subject to
# the terms of GNU Lesser General Public License Version 2.1.
2000-09-18 10:18:56 -05:00
#
#
# GNU Lesser General Public License Version 2.1
# =============================================
# Copyright 2005 by Sun Microsystems, Inc.
# 901 San Antonio Road, Palo Alto, CA 94303, USA
2000-09-18 10:18:56 -05:00
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 2.1, as published by the Free Software Foundation.
2000-09-18 10:18:56 -05:00
#
# This library 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 for more details.
2000-09-18 10:18:56 -05:00
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307 USA
2000-09-18 10:18:56 -05:00
#
#*************************************************************************
PRJ=..$/..
PRJNAME=cpputools
TARGET=uno
LIBTARGET=NO
ENABLE_EXCEPTIONS=TRUE
.IF "$(OS)" == "LINUX"
LINKFLAGSRUNPATH = -Wl,-rpath,\''$$ORIGIN/../lib:$$ORIGIN'\'
.ELIF "$(OS)" == "SOLARIS"
LINKFLAGSRUNPATH = -R\''$$ORIGIN/../lib:$$ORIGIN'\'
.ENDIF
2000-09-18 10:18:56 -05:00
# --- 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)
2000-09-18 10:18:56 -05:00
# Include all four UNO runtime libraries, so that C++ UNO components running in
# the uno executable have a defined environment (stlport is already included via
# APP1STDLIB):
2000-09-18 10:18:56 -05:00
APP1STDLIBS= \
$(SALLIB) \
$(SALHELPERLIB) \
2000-09-18 10:18:56 -05:00
$(CPPULIB) \
$(CPPUHELPERLIB)
.INCLUDE : target.mk