Files
libreoffice/bridges/source/cpp_uno/msvc_win32_intel/makefile.mk

84 lines
2.0 KiB
Makefile
Raw Normal View History

2000-09-18 14:29:57 +00:00
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 14:29:57 +00:00
#
# OpenOffice.org - a multi-platform office productivity suite
2000-09-18 14:29:57 +00:00
#
# This file is part of OpenOffice.org.
2000-09-18 14:29:57 +00: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 14:29:57 +00: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 14:29:57 +00: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 14:29:57 +00:00
#
#*************************************************************************
PRJ=..$/..$/..
PRJNAME=bridges
2000-09-18 14:29:57 +00:00
TARGET=msci_uno
LIBTARGET=no
ENABLE_EXCEPTIONS=TRUE
# --- Settings -----------------------------------------------------
.INCLUDE : settings.mk
# --- Files --------------------------------------------------------
.IF "$(COM)$(CPU)" == "MSCI"
2000-09-18 14:29:57 +00:00
.IF "$(debug)" != ""
CFLAGS += -Ob0
2000-09-18 14:29:57 +00:00
.ENDIF
.IF "$(cppu_no_leak)" == ""
2001-08-01 10:23:13 +00:00
.IF "$(bndchk)" == ""
CFLAGS += -DLEAK_STATIC_DATA
.ENDIF
2001-08-01 10:23:13 +00:00
.ENDIF
2000-09-18 14:29:57 +00:00
SLOFILES= \
$(SLO)$/cpp2uno.obj \
$(SLO)$/uno2cpp.obj \
$(SLO)$/dllinit.obj \
2000-09-18 14:29:57 +00:00
$(SLO)$/except.obj
2001-09-25 08:15:38 +00:00
NOOPTFILES= \
$(SLO)$/except.obj
2000-09-18 14:29:57 +00:00
SHL1TARGET= $(TARGET)
2001-09-06 10:59:04 +00:00
SHL1DEF=$(MISC)$/$(SHL1TARGET).def
SHL1IMPLIB=i$(TARGET)
SHL1VERSIONMAP=..$/..$/bridge_exports.map
SHL1RPATH=URELIB
2000-09-18 14:29:57 +00:00
SHL1OBJS = $(SLOFILES)
SHL1LIBS = $(SLB)$/cpp_uno_shared.lib
2000-09-18 14:29:57 +00:00
SHL1STDLIBS= \
$(CPPULIB) \
$(SALLIB)
DEF1NAME=$(SHL1TARGET)
2001-09-25 08:15:38 +00:00
.ENDIF
2000-09-18 14:29:57 +00:00
# --- Targets ------------------------------------------------------
.INCLUDE : target.mk