2004-07-23 05:04:04 -05:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-11 08:03:01 -05:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
|
|
|
# Copyright 2008 by Sun Microsystems, Inc.
|
2004-07-23 05:04:04 -05:00
|
|
|
#
|
2008-04-11 08:03:01 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2004-07-23 05:04:04 -05:00
|
|
|
#
|
2008-04-11 08:03:01 -05:00
|
|
|
# $RCSfile: makefile.mk,v $
|
2004-07-23 05:04:04 -05:00
|
|
|
#
|
2008-07-01 07:29:10 -05:00
|
|
|
# $Revision: 1.12 $
|
2004-07-23 05:04:04 -05:00
|
|
|
#
|
2008-04-11 08:03:01 -05:00
|
|
|
# This file is part of OpenOffice.org.
|
2004-07-23 05:04:04 -05:00
|
|
|
#
|
2008-04-11 08:03:01 -05: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.
|
2004-07-23 05:04:04 -05:00
|
|
|
#
|
2008-04-11 08:03:01 -05: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).
|
2004-07-23 05:04:04 -05:00
|
|
|
#
|
2008-04-11 08:03:01 -05: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.
|
2004-07-23 05:04:04 -05:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
PRJ=..$/..
|
|
|
|
|
2004-12-10 11:06:39 -06:00
|
|
|
PRJNAME=unoxml
|
2004-07-23 05:04:04 -05:00
|
|
|
TARGET=unoxml
|
|
|
|
LIBTARGET=NO
|
|
|
|
|
|
|
|
ENABLE_EXCEPTIONS=TRUE
|
|
|
|
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : settings.mk
|
2004-12-10 11:06:39 -06:00
|
|
|
|
2004-09-08 10:16:02 -05:00
|
|
|
.IF "$(SYSTEM_LIBXML)" == "YES"
|
|
|
|
CFLAGS+=-DSYSTEM_LIBXML $(LIBXML_CFLAGS)
|
|
|
|
.ENDIF
|
2004-07-23 05:04:04 -05:00
|
|
|
|
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
|
|
|
|
SLOFILES = \
|
|
|
|
$(SLO)$/services.obj
|
|
|
|
|
|
|
|
|
|
|
|
SHL1DEPN= makefile.mk
|
|
|
|
SHL1OBJS= $(SLOFILES)
|
|
|
|
|
2008-02-25 09:00:35 -06:00
|
|
|
SHL1TARGET= $(TARGET)$(DLLPOSTFIX)
|
2004-07-23 05:04:04 -05:00
|
|
|
SHL1IMPLIB= i$(TARGET)
|
|
|
|
|
|
|
|
SHL1VERSIONMAP=exports.map
|
|
|
|
SHL1DEF=$(MISC)$/$(SHL1TARGET).def
|
|
|
|
DEF1NAME=$(SHL1TARGET)
|
|
|
|
|
|
|
|
SHL1LIBS= \
|
|
|
|
$(SLB)$/domimpl.lib \
|
|
|
|
$(SLB)$/xpathimpl.lib \
|
2008-07-01 07:29:10 -05:00
|
|
|
$(SLB)$/eventsimpl.lib
|
2004-07-23 05:04:04 -05:00
|
|
|
|
|
|
|
SHL1STDLIBS= \
|
2008-06-06 06:07:26 -05:00
|
|
|
$(UCBHELPERLIB) \
|
2007-10-15 06:23:44 -05:00
|
|
|
$(LIBXML2LIB) \
|
2004-07-23 05:04:04 -05:00
|
|
|
$(COMPHELPERLIB) \
|
|
|
|
$(CPPUHELPERLIB) \
|
|
|
|
$(CPPULIB) \
|
2007-06-05 07:54:28 -05:00
|
|
|
$(SALLIB)\
|
|
|
|
$(EXPATASCII3RDLIB)
|
2004-07-23 05:04:04 -05:00
|
|
|
|
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : target.mk
|
|
|
|
|