2008-01-10 05:53:26 -06:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-10 11:09:11 -05:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
2011-03-02 06:22:42 -06:00
|
|
|
# Copyright 2000, 2011 Oracle and/or its affiliates.
|
2008-01-10 05:53:26 -06:00
|
|
|
#
|
2008-04-10 11:09:11 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2008-01-10 05:53:26 -06:00
|
|
|
#
|
2008-04-10 11:09:11 -05:00
|
|
|
# This file is part of OpenOffice.org.
|
2008-01-10 05:53:26 -06:00
|
|
|
#
|
2008-04-10 11:09:11 -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.
|
2008-01-10 05:53:26 -06:00
|
|
|
#
|
2008-04-10 11:09:11 -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).
|
2008-01-10 05:53:26 -06:00
|
|
|
#
|
2008-04-10 11:09:11 -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.
|
2008-01-10 05:53:26 -06:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
2011-03-02 06:22:42 -06:00
|
|
|
$(eval $(call gb_Library_Library,sax))
|
|
|
|
|
2011-04-01 15:47:03 -05:00
|
|
|
$(eval $(call gb_Library_add_package_headers,sax,\
|
|
|
|
sax_inc \
|
|
|
|
))
|
|
|
|
|
2011-03-02 06:22:42 -06:00
|
|
|
$(eval $(call gb_Library_set_include,sax,\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
-I$(OUTDIR)/inc/offuh \
|
|
|
|
-I$(SRCDIR)/sax/inc \
|
|
|
|
))
|
|
|
|
|
2011-04-13 11:11:41 -05:00
|
|
|
$(eval $(call gb_Library_add_defs,sax,\
|
2011-03-02 06:22:42 -06:00
|
|
|
-DSAX_DLLIMPLEMENTATION \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_linked_libs,sax,\
|
2011-06-20 06:24:14 -05:00
|
|
|
comphelper \
|
2011-03-02 06:22:42 -06:00
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
2011-06-20 06:24:14 -05:00
|
|
|
sal \
|
2011-03-02 06:22:42 -06:00
|
|
|
$(gb_STDLIBS) \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,sax,\
|
|
|
|
sax/source/tools/converter \
|
|
|
|
sax/source/tools/fastattribs \
|
|
|
|
sax/source/tools/fastserializer \
|
|
|
|
sax/source/tools/fshelper \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|