1#************************************************************************* 2# 3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4# 5# Copyright 2000, 2011 Oracle and/or its affiliates. 6# 7# OpenOffice.org - a multi-platform office productivity suite 8# 9# This file is part of OpenOffice.org. 10# 11# OpenOffice.org is free software: you can redistribute it and/or modify 12# it under the terms of the GNU Lesser General Public License version 3 13# only, as published by the Free Software Foundation. 14# 15# OpenOffice.org is distributed in the hope that it will be useful, 16# but WITHOUT ANY WARRANTY; without even the implied warranty of 17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18# GNU Lesser General Public License version 3 for more details 19# (a copy is included in the LICENSE file that accompanied this code). 20# 21# You should have received a copy of the GNU Lesser General Public License 22# version 3 along with OpenOffice.org. If not, see 23# <http://www.openoffice.org/license.html> 24# for a copy of the LGPLv3 License. 25# 26#************************************************************************* 27 28$(eval $(call gb_Library_Library,msword)) 29 30$(eval $(call gb_Library_set_componentfile,msword,sw/util/msword)) 31 32$(eval $(call gb_Library_set_include,msword,\ 33 -I$(SRCDIR)/sw/source/core/inc \ 34 -I$(SRCDIR)/sw/source/ui/inc \ 35 -I$(SRCDIR)/sw/source/filter/inc \ 36 -I$(SRCDIR)/sw/inc/pch \ 37 -I$(SRCDIR)/sw/inc \ 38 -I$(WORKDIR)/inc/sw/sdi \ 39 -I$(WORKDIR)/Misc/sw/ \ 40 $$(INCLUDE) \ 41 -I$(OUTDIR)/inc/offuh \ 42 -I$(OUTDIR)/inc/sw \ 43)) 44 45$(eval $(call gb_Library_set_defs,msword,\ 46 $$(DEFS) \ 47)) 48 49$(eval $(call gb_Library_add_linked_libs,msword,\ 50 basegfx \ 51 comphelper \ 52 cppu \ 53 cppuhelper \ 54 editeng \ 55 i18nisolang1 \ 56 i18nutil \ 57 icuuc \ 58 msfilter \ 59 sal \ 60 sfx \ 61 sot \ 62 stl \ 63 svl \ 64 svt \ 65 svx \ 66 svx \ 67 svxcore \ 68 sw \ 69 tk \ 70 tl \ 71 ucbhelper \ 72 utl \ 73 vcl \ 74 $(gb_STDLIBS) \ 75)) 76 77$(eval $(call gb_Library_add_exception_objects,msword,\ 78 sw/source/filter/rtf/rtffld \ 79 sw/source/filter/rtf/rtffly \ 80 sw/source/filter/rtf/rtfnum \ 81 sw/source/filter/rtf/rtftbl \ 82 sw/source/filter/rtf/swparrtf \ 83 sw/source/filter/ww8/rtfattributeoutput \ 84 sw/source/filter/ww8/rtfexport \ 85 sw/source/filter/ww8/rtfexportfilter \ 86 sw/source/filter/ww8/rtfimportfilter \ 87 sw/source/filter/ww8/rtfsdrexport \ 88 sw/source/filter/ww8/WW8FFData \ 89 sw/source/filter/ww8/WW8FibData \ 90 sw/source/filter/ww8/WW8Sttbf \ 91 sw/source/filter/ww8/WW8TableInfo \ 92 sw/source/filter/ww8/fields \ 93 sw/source/filter/ww8/styles \ 94 sw/source/filter/ww8/tracer \ 95 sw/source/filter/ww8/writerhelper \ 96 sw/source/filter/ww8/writerwordglue \ 97 sw/source/filter/ww8/wrtw8esh \ 98 sw/source/filter/ww8/wrtw8nds \ 99 sw/source/filter/ww8/wrtw8num \ 100 sw/source/filter/ww8/wrtw8sty \ 101 sw/source/filter/ww8/wrtww8 \ 102 sw/source/filter/ww8/wrtww8gr \ 103 sw/source/filter/ww8/ww8atr \ 104 sw/source/filter/ww8/ww8glsy \ 105 sw/source/filter/ww8/ww8graf \ 106 sw/source/filter/ww8/ww8graf2 \ 107 sw/source/filter/ww8/ww8par \ 108 sw/source/filter/ww8/ww8par2 \ 109 sw/source/filter/ww8/ww8par3 \ 110 sw/source/filter/ww8/ww8par4 \ 111 sw/source/filter/ww8/ww8par5 \ 112 sw/source/filter/ww8/ww8par6 \ 113 sw/source/filter/ww8/ww8scan \ 114)) 115 116# vim: set noet sw=4 ts=4: 117