office-gobmx/cppuhelper/source/makefile.mk

122 lines
3.3 KiB
Makefile
Raw Normal View History

2000-09-18 09:29:57 -05:00
#*************************************************************************
#
# OpenOffice.org - a multi-platform office productivity suite
2000-09-18 09:29:57 -05:00
#
# $RCSfile: makefile.mk,v $
2000-09-18 09:29:57 -05:00
#
# $Revision: 1.42 $
2000-09-18 09:29:57 -05:00
#
# last change: $Author: vg $ $Date: 2006-05-24 13:29:58 $
2000-09-18 09:29:57 -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 09:29:57 -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 09:29:57 -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 09:29:57 -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 09:29:57 -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 09:29:57 -05:00
#
#*************************************************************************
PRJ=..
PRJNAME=cppuhelper
TARGET=cppuhelper
2000-09-18 09:29:57 -05:00
ENABLE_EXCEPTIONS=TRUE
USE_DEFFILE=TRUE
2000-09-18 09:29:57 -05:00
.IF "$(OS)" != "WNT"
UNIXVERSIONNAMES=UDK
.ENDIF # WNT
2000-09-18 09:29:57 -05:00
# --- Settings -----------------------------------------------------
2000-09-18 09:29:57 -05:00
.INCLUDE : settings.mk
# --- Files --------------------------------------------------------
INCPRE+=$(OUT)$/inc$/private
2000-09-18 09:29:57 -05:00
.IF "$(debug)" != ""
# msvc++: no inlining for debugging
.IF "$(COM)" == "MSC"
CFLAGS += -Ob0
.ENDIF
.ENDIF
SLOFILES= \
2000-09-18 09:29:57 -05:00
$(SLO)$/typeprovider.obj \
$(SLO)$/exc_thrower.obj \
$(SLO)$/servicefactory.obj \
$(SLO)$/bootstrap.obj \
2000-09-18 09:29:57 -05:00
$(SLO)$/implbase.obj \
$(SLO)$/implbase_ex.obj \
2000-09-18 09:29:57 -05:00
$(SLO)$/propshlp.obj \
$(SLO)$/weak.obj \
$(SLO)$/interfacecontainer.obj \
$(SLO)$/stdidlclass.obj \
$(SLO)$/factory.obj \
$(SLO)$/component_context.obj \
2000-12-19 08:01:51 -06:00
$(SLO)$/component.obj \
$(SLO)$/shlib.obj \
$(SLO)$/tdmgr.obj \
2001-12-14 06:19:51 -06:00
$(SLO)$/implementationentry.obj \
$(SLO)$/access_control.obj \
$(SLO)$/macro_expander.obj \
$(SLO)$/unourl.obj \
$(SLO)$/propertysetmixin.obj
2000-09-18 09:29:57 -05:00
.IF "$(GUI)" == "WNT"
2004-11-04 01:41:13 -06:00
SHL1TARGET=$(TARGET)$(UDK_MAJOR)$(COMID)
.ELSE
SHL1TARGET=uno_$(TARGET)$(COMID)
.ENDIF
2000-09-18 09:29:57 -05:00
SHL1STDLIBS= \
$(SALLIB) \
$(SALHELPERLIB) \
$(CPPULIB)
2000-09-18 09:29:57 -05:00
SHL1DEPN=
SHL1IMPLIB=i$(TARGET)
SHL1OBJS = $(SLOFILES)
SHL1DEF=$(MISC)$/$(SHL1TARGET).def
DEF1NAME=$(SHL1TARGET)
2000-09-18 09:29:57 -05:00
2001-10-26 06:49:41 -05:00
.IF "$(COMNAME)"=="msci"
2001-06-07 02:58:03 -05:00
SHL1VERSIONMAP=msvc_win32_intel.map
2001-10-26 06:49:41 -05:00
.ELIF "$(COMNAME)"=="sunpro5"
2001-06-07 02:58:03 -05:00
SHL1VERSIONMAP=cc5_solaris_sparc.map
.ELIF "$(OS)$(CPU)$(COMNAME)"=="LINUXIgcc3"
SHL1VERSIONMAP=gcc3_linux_intel.map
.ELIF "$(OS)$(CPU)$(COMNAME)"=="FREEBSDIgcc3"
SHL1VERSIONMAP=gcc3_linux_intel.map
.ELIF "$(OS)$(CPU)$(COMNAME)"=="LINUXSgcc3"
SHL1VERSIONMAP=gcc3_linux_intel.map
.ENDIF
2000-09-18 09:29:57 -05:00
# --- Targets ------------------------------------------------------
.IF "$(diag)"!=""
CFLAGS += -DDIAG=$(diag)
.ENDIF
2000-09-18 09:29:57 -05:00
.INCLUDE : target.mk