2009-07-22 10:53:14 +0200 cmc r274224 : #i103714# duplicate patch 2009-07-22 10:45:26 +0200 cmc r274223 : #i103715# fix up m68k makefile.mk 2009-07-22 10:32:16 +0200 cmc r274222 : #i103714# || && new gcc warnings 2009-07-21 13:29:17 +0200 cmc r274190 : #i103651# fix for subpixel gray line in cairo canvas animations 2009-07-20 17:35:58 +0200 cmc r274151 : #i103668# WaE over use of const 2009-07-20 15:53:51 +0200 cmc r274146 : #i103664# use boost::addressof instead 2009-07-20 15:38:40 +0200 cmc r274145 : #i103451# long -> INT32 for these streamable values 2009-07-20 15:33:15 +0200 cmc r274144 : #i103663 clear low-hanging aliasing warnings 2009-07-20 15:28:23 +0200 cmc r274143 : #i103662 clear low-hanging aliasing warnings 2009-07-20 15:21:46 +0200 cmc r274142 : #i103661 clear low-hanging aliasing warnings 2009-07-20 15:16:05 +0200 cmc r274141 : #i103660 clear low-hanging aliasing warnings
85 lines
2.1 KiB
Makefile
85 lines
2.1 KiB
Makefile
#*************************************************************************
|
|
#
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
#
|
|
# Copyright 2008 by Sun Microsystems, Inc.
|
|
#
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
|
#
|
|
# $RCSfile: makefile.mk,v $
|
|
#
|
|
# $Revision: 1.2 $
|
|
#
|
|
# This file is part of OpenOffice.org.
|
|
#
|
|
# 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.
|
|
#
|
|
# 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).
|
|
#
|
|
# 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.
|
|
#
|
|
#*************************************************************************
|
|
|
|
PRJ=..$/..$/..
|
|
|
|
PRJNAME=bridges
|
|
TARGET=gcc3_uno
|
|
LIBTARGET=no
|
|
ENABLE_EXCEPTIONS=TRUE
|
|
NO_BSYMBOLIC=TRUE
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
.INCLUDE : settings.mk
|
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
.IF "$(COM)$(OS)$(CPU)$(COMNAME)" == "GCCLINUX6gcc3"
|
|
|
|
.IF "$(cppu_no_leak)" == ""
|
|
CFLAGS += -DLEAK_STATIC_DATA
|
|
.ENDIF
|
|
|
|
CFLAGSCXX += -fno-omit-frame-pointer
|
|
|
|
NOOPTFILES= \
|
|
$(SLO)$/cpp2uno.obj \
|
|
$(SLO)$/except.obj \
|
|
$(SLO)$/uno2cpp.obj
|
|
|
|
CFLAGSNOOPT=-O0
|
|
|
|
SLOFILES= \
|
|
$(SLO)$/cpp2uno.obj \
|
|
$(SLO)$/except.obj \
|
|
$(SLO)$/uno2cpp.obj
|
|
|
|
SHL1TARGET= $(TARGET)
|
|
|
|
SHL1DEF=$(MISC)$/$(SHL1TARGET).def
|
|
SHL1IMPLIB=i$(TARGET)
|
|
SHL1VERSIONMAP=..$/..$/bridge_exports.map
|
|
SHL1RPATH=URELIB
|
|
|
|
SHL1OBJS = $(SLOFILES)
|
|
SHL1LIBS = $(SLB)$/cpp_uno_shared.lib
|
|
|
|
SHL1STDLIBS= \
|
|
$(CPPULIB) \
|
|
$(SALLIB)
|
|
|
|
.ENDIF
|
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
.INCLUDE : target.mk
|