Files
loongoffice/chart2/source/controller/makefile.mk
Vladimir Glazounov 3484a69abc INTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED
2007/04/26 09:53:57 bm 1.4.4.12: RESYNC: resolving merge problems
2007/02/01 16:54:10 iha 1.4.4.11: remove superfluous code from old context menu
2006/11/22 17:23:31 iha 1.4.4.10: RESYNC: (1.7-1.8); FILE MERGED
2006/10/06 09:10:52 bm 1.4.4.9: #i64500# need sot library for clipboard
2006/05/05 14:03:51 bm 1.4.4.8: RESYNC: (1.6-1.7); FILE MERGED
2005/11/21 14:53:31 bm 1.4.4.7: +sfx.srs for the strings STR_UNDO and STR_REDO
2005/11/02 12:11:34 bm 1.4.4.6: +basegfx lib (remember to remove goodies soon)
2005/10/07 11:07:49 bm 1.4.4.5: RESYNC: (1.5-1.6); FILE MERGED
2005/07/19 11:28:47 bm 1.4.4.4: backslash too much in libraries list
2005/07/08 14:54:37 iha 1.4.4.3: create and notify an accessible view
2004/06/03 03:38:10 iha 1.4.4.2: RESYNC: (1.4-1.5); FILE MERGED
2004/02/16 16:06:57 bm 1.4.4.1: -$SVLIB == $VCLLIB
2007-05-22 16:13:57 +00:00

134 lines
3.9 KiB
Makefile

#*************************************************************************
#
# OpenOffice.org - a multi-platform office productivity suite
#
# $RCSfile: makefile.mk,v $
#
# $Revision: 1.10 $
#
# last change: $Author: vg $ $Date: 2007-05-22 17:13:57 $
#
# 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= chart2
TARGET= chartcontroller
USE_DEFFILE= TRUE
ENABLE_EXCEPTIONS= TRUE
# --- Settings -----------------------------------------------------
.INCLUDE: $(PRJ)$/util$/makefile.pmk
# --- export library -------------------------------------------------
#You can use several library macros of this form to build libraries that
#do not consist of all object files in a directory or to merge different libraries.
LIB1TARGET= $(SLB)$/$(TARGET).lib
LIB1FILES= \
$(SLB)$/chcontroller.lib \
$(SLB)$/chcdrawinglayer.lib \
$(SLB)$/chcitemsetwrapper.lib \
$(SLB)$/chcdialogs.lib \
$(SLB)$/chchartapiwrapper.lib \
$(SLB)$/chcaccessibility.lib
#--------
#Indicates the filename of the shared library.
SHL1TARGET= $(TARGET)$(UPD)$(DLLPOSTFIX)
#indicates dependencies:
.IF "$(COM)" == "MSC"
SHL1DEPN = \
$(LB)$/icharttools.lib \
$(LB)$/ichartview.lib
.ELSE
SHL1DEPN =
.ENDIF
#Specifies an import library to create. For Win32 only.
SHL1IMPLIB= i$(TARGET)
#Specifies libraries from the same module to put into the shared library.
#was created above
SHL1LIBS= $(LIB1TARGET)
#Links import libraries.
SHL1STDLIBS= $(CHARTTOOLS) \
$(CHARTVIEW) \
$(CPPULIB) \
$(CPPUHELPERLIB) \
$(COMPHELPERLIB) \
$(BASEGFXLIB) \
$(GOODIESLIB) \
$(BASEGFXLIB) \
$(SALLIB) \
$(SVLLIB) \
$(SVTOOLLIB) \
$(SVXLIB) \
$(TKLIB) \
$(TOOLSLIB) \
$(I18NISOLANGLIB) \
$(VCLLIB) \
$(SFXLIB) \
$(UNOTOOLSLIB) \
$(SOTLIB)
#--------exports
#specifies the exported symbols for Windows only:
SHL1DEF= $(MISC)$/$(SHL1TARGET).def
SHL1VERSIONMAP = controller.map
#--------definition file
#name of the definition file:
DEF1NAME= $(SHL1TARGET)
# --- Resources ---------------------------------------------------------------
# sfx.srs is needed for the strings for UNDO and REDO in the UndoCommandDispatch
RESLIB1LIST=\
$(SRS)$/chcdialogs.srs \
$(SOLARCOMMONRESDIR)$/sfx.srs
RESLIB1NAME= $(TARGET)
RESLIB1IMAGES=$(PRJ)$/res
RESLIB1SRSFILES=$(RESLIB1LIST)
RESLIB1DEPN=$(RESLIB1LIST)
#RESLIB1SRSFILES=$(SRS)$/$(TARGET).srs
#RESLIB1DEPN= SRCFILES
# --- Targets -----------------------------------------------------------------
.INCLUDE: target.mk