diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-04 11:28:39 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-04 11:28:39 +0000 |
commit | edac6516d4ed3749ca65fd7476d255630b944a98 (patch) | |
tree | 43d540e36dea1ae68a4d0f3b88c3bd753f201774 /shell/source/backends | |
parent | 07ab92f518d7b87736e82f9212299ea27d1f90d2 (diff) |
INTEGRATION: CWS kdesettings3 (1.1.2); FILE ADDED
2006/07/21 12:53:49 kendy 1.1.2.1: #i66204#
Don't link with KDE libraries in Gnome (and v.v.)
Diffstat (limited to 'shell/source/backends')
-rw-r--r-- | shell/source/backends/desktopbe/exports.map | 11 | ||||
-rw-r--r-- | shell/source/backends/desktopbe/makefile.mk | 79 |
2 files changed, 90 insertions, 0 deletions
diff --git a/shell/source/backends/desktopbe/exports.map b/shell/source/backends/desktopbe/exports.map new file mode 100644 index 000000000000..c235082ab7cd --- /dev/null +++ b/shell/source/backends/desktopbe/exports.map @@ -0,0 +1,11 @@ +UDK_3_0_0 { + global: + GetVersionInfo; + component_getDescriptionFunc; + component_getImplementationEnvironment; + component_getFactory; + component_writeInfo; + + local: + *; +}; diff --git a/shell/source/backends/desktopbe/makefile.mk b/shell/source/backends/desktopbe/makefile.mk new file mode 100644 index 000000000000..a24b971d476b --- /dev/null +++ b/shell/source/backends/desktopbe/makefile.mk @@ -0,0 +1,79 @@ +#************************************************************************* +# +# OpenOffice.org - a multi-platform office productivity suite +# +# $RCSfile: makefile.mk,v $ +# +# $Revision: 1.2 $ +# +# last change: $Author: ihi $ $Date: 2006-08-04 12:28:39 $ +# +# The Contents of this file are made available subject to +# the terms of GNU Lesser General Public License Version 2.1. +# +# +# GNU Lesser General Public License Version 2.1 +# ============================================= +# Copyright 2005 by Sun Microsystems, Inc. +# 901 San Antonio Road, Palo Alto, CA 94303, USA +# +# 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. +# +# 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. +# +# 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 +# +#************************************************************************* +PRJ=..$/..$/.. + +PRJNAME=shell +TARGET=desktopbe + +LIBTARGET=NO +ENABLE_EXCEPTIONS=TRUE + +COMP1TYPELIST=$(TARGET) +COMPRDB=$(SOLARBINDIR)$/types.rdb +UNOUCROUT=$(OUT)$/inc$/$(TARGET) +INCPRE=$(UNOUCROUT) + +# --- Settings --- + +.INCLUDE : settings.mk + +UNIXTEXT=$(MISC)/$(TARGET)1-ucd.txt + +# no "lib" prefix +DLLPRE = + +# --- Files --- + +SLOFILES=\ + $(SLO)$/desktopbecdef.obj + +SHL1NOCHECK=TRUE +SHL1TARGET=$(TARGET)1.uno +SHL1OBJS=$(SLOFILES) +SHL1DEF=$(MISC)$/$(SHL1TARGET).def + +SHL1IMPLIB=i$(SHL1TARGET) +SHL1STDLIBS= \ + $(CPPUHELPERLIB) \ + $(CPPULIB) \ + $(SALLIB) + +SHL1VERSIONMAP=exports.map +SHL1DEF=$(MISC)$/$(SHL1TARGET).def +DEF1NAME=$(SHL1TARGET) + +# --- Targets --- + +.INCLUDE : target.mk |