12e5414cb8
2007/04/26 09:53:59 bm 1.1.1.1.4.13: RESYNC: resolving merge problems 2007/04/25 01:06:22 bm 1.1.1.1.4.12: RESYNC: (1.5-1.7); FILE MERGED 2007/02/07 13:08:13 iha 1.1.1.1.4.11: RESYNC: (1.4-1.5); FILE MERGED 2006/11/22 17:25:32 iha 1.1.1.1.4.10: RESYNC: (1.3-1.4); FILE MERGED 2006/06/23 15:06:19 iha 1.1.1.1.4.9: use matrix from basegfx 2006/05/05 14:04:32 bm 1.1.1.1.4.8: RESYNC: (1.2-1.3); FILE MERGED 2006/03/29 22:24:46 iha 1.1.1.1.4.7: restructure legend entry creation + legend entries in data labels 2005/10/07 12:14:49 bm 1.1.1.1.4.6: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/05/31 19:13:59 iha 1.1.1.1.4.5: create view without controller 2004/02/18 17:05:22 iha 1.1.1.1.4.4: add dependency on charttools.lib 2004/02/17 19:20:33 iha 1.1.1.1.4.3: use charttools and chartview lib as shared libs - not static - export all symbols 2004/02/16 16:07:12 bm 1.1.1.1.4.2: -$SVLIB == $VCLLIB 2004/02/13 16:51:55 bm 1.1.1.1.4.1: join from changes on branch bm_post_chart01
129 lines
3.7 KiB
Makefile
129 lines
3.7 KiB
Makefile
#*************************************************************************
|
|
#
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
|
#
|
|
# $RCSfile: makefile.mk,v $
|
|
#
|
|
# $Revision: 1.8 $
|
|
#
|
|
# last change: $Author: vg $ $Date: 2007-05-22 19:08:31 $
|
|
#
|
|
# 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= chartview
|
|
|
|
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)$/chvaxes.lib \
|
|
$(SLB)$/chvtypes.lib \
|
|
$(SLB)$/chvdiagram.lib \
|
|
$(SLB)$/chview.lib
|
|
|
|
#--------
|
|
|
|
#Indicates the filename of the shared library.
|
|
SHL1TARGET= $(TARGET)$(UPD)$(DLLPOSTFIX)
|
|
|
|
#indicates dependencies:
|
|
.IF "$(COM)" == "MSC"
|
|
SHL1DEPN = \
|
|
$(LB)$/icharttools.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) \
|
|
$(CPPULIB) \
|
|
$(CPPUHELPERLIB) \
|
|
$(COMPHELPERLIB) \
|
|
$(GOODIESLIB) \
|
|
$(SALLIB) \
|
|
$(SVLLIB) \
|
|
$(SVTOOLLIB) \
|
|
$(SVXLIB) \
|
|
$(TKLIB) \
|
|
$(TOOLSLIB) \
|
|
$(UNOTOOLSLIB) \
|
|
$(I18NISOLANGLIB) \
|
|
$(BASEGFXLIB) \
|
|
$(VCLLIB) \
|
|
$(SFXLIB) \
|
|
$(BASEGFXLIB)
|
|
|
|
#--------exports
|
|
|
|
#specifies the exported symbols for Windows only:
|
|
SHL1DEF= $(MISC)$/$(SHL1TARGET).def
|
|
|
|
#Specifies the library name to parse for symbols. For Win32 only.
|
|
DEFLIB1NAME= $(TARGET)
|
|
|
|
#A file of symbols to export.
|
|
#DEF1EXPORTFILE= $(PRJ)$/source$/inc$/exports.dxp
|
|
|
|
#--------definition file
|
|
|
|
#name of the definition file:
|
|
DEF1NAME= $(SHL1TARGET)
|
|
|
|
# indicates definition file dependencies
|
|
DEF1DEPN= $(MISC)$/$(SHL1TARGET).flt
|
|
|
|
#A comment on the definition file.
|
|
DEF1DES= Viewable Component Chart View
|
|
|
|
# --- Targets -----------------------------------------------------------------
|
|
|
|
.INCLUDE: target.mk
|
|
|
|
# --- Filter -----------------------------------------------------------
|
|
|
|
$(MISC)$/$(SHL1TARGET).flt: makefile.mk \
|
|
exports.flt
|
|
$(TYPE) exports.flt > $@
|