c1076fbc24
2008-11-27 13:22:38 +0100 ydario r264480 : #i96439#: fix build for unix platforms. 2008-11-26 18:32:42 +0100 ydario r264433 : #i96439#: os2 systemshell code (dummy code). 2008-11-26 16:33:48 +0100 ydario r264421 : #i96439#: vcl fix for pdf export of truetype fonts. 2008-11-26 15:04:44 +0100 ydario r264399 : #i96439#: build macros fix scripts, gcc specific flags. 2008-11-26 15:00:15 +0100 ydario r264398 : #i96439#: vcl source code updates. 2008-11-26 13:21:37 +0100 ydario r264378 : #i96439#: os2 build system fixes. 2008-11-26 13:20:27 +0100 ydario r264377 : #i96439#: configuration and build macros updates. 2008-11-26 13:16:35 +0100 ydario r264375 : #i96439#: new launcher code, build system updates. 2008-11-26 13:12:49 +0100 ydario r264373 : #i96439#: use OSL endian macro. 2008-11-26 12:54:50 +0100 ydario r264371 : #i96439#: os2 build system fixes. 2008-11-26 12:30:46 +0100 ydario r264367 : #i96439#: os2 build system fixes. 2008-11-26 12:09:33 +0100 ydario r264365 : #i96439#: _Export is a reserved keyword under gcc for os2. 2008-11-26 12:08:12 +0100 ydario r264364 : #i96439#: new libpath handling. 2008-11-26 11:57:51 +0100 ydario r264363 : #i96439#: use C call, generates proper stabs; fix rtti names.
94 lines
2.4 KiB
Makefile
94 lines
2.4 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.10 $
|
|
#
|
|
# 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=writerfilter
|
|
TARGET=writerfilter.uno
|
|
LIBTARGET=NO
|
|
ENABLE_EXCEPTIONS=TRUE
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
.INCLUDE : settings.mk
|
|
|
|
CDEFS+=-DWRITERFILTER_DLLIMPLEMENTATION
|
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
SLOFILES=$(SLO)$/component.obj
|
|
|
|
SHL1TARGET=$(TARGET)
|
|
|
|
.IF "$(GUI)"=="UNX" || "$(GUI)"=="MAC"
|
|
DOCTOKLIB=-ldoctok
|
|
OOXMLLIB=-looxml
|
|
RESOURCEMODELLIB=-lresourcemodel
|
|
.ELIF "$(GUI)"=="OS2"
|
|
DOCTOKLIB=$(LB)$/idoctok.lib
|
|
OOXMLLIB=$(LB)$/iooxml.lib
|
|
RESOURCEMODELLIB=$(LB)$/iresourcemodel.lib
|
|
.ELIF "$(GUI)"=="WNT"
|
|
.IF "$(COM)"=="GCC"
|
|
DOCTOKLIB=-ldoctok
|
|
OOXMLLIB=-looxml
|
|
RESOURCEMODELLIB=-lresourcemodel
|
|
.ELSE
|
|
DOCTOKLIB=$(LB)$/idoctok.lib
|
|
OOXMLLIB=$(LB)$/iooxml.lib
|
|
RESOURCEMODELLIB=$(LB)$/iresourcemodel.lib
|
|
.ENDIF
|
|
.ENDIF
|
|
|
|
SHL1STDLIBS=$(SALLIB)\
|
|
$(CPPULIB)\
|
|
$(COMPHELPERLIB)\
|
|
$(CPPUHELPERLIB)\
|
|
$(UCBHELPERLIB)\
|
|
$(DOCTOKLIB) \
|
|
$(OOXMLLIB) \
|
|
$(RESOURCEMODELLIB)
|
|
|
|
SHL1LIBS=\
|
|
$(SLB)$/debugservices_doctok.lib \
|
|
$(SLB)$/debugservices_ooxml.lib
|
|
|
|
SHL1IMPLIB=i$(SHL1TARGET)
|
|
|
|
SHL1OBJS = $(SLO)$/component.obj
|
|
|
|
SHL1DEF=$(MISC)$/$(SHL1TARGET).def
|
|
|
|
DEF1NAME=$(SHL1TARGET)
|
|
DEF1EXPORTFILE=exports.dxp
|
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
.INCLUDE : target.mk
|
|
|