1#*************************************************************************
2#
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# Copyright 2000, 2010 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
28DIR_FILTERCFGOUT := $(MISC)$/filters
29.IF "$(WITH_LANG)"!=""
30DIR_LOCFRAG      := $(DIR_FILTERCFGOUT)$/ui$/fragments
31.ELSE			# "$(WITH_LANG)"!=""
32DIR_LOCFRAG      := $(PRJ)$/source$/config$/fragments
33.ENDIF			# "$(WITH_LANG)"!=""
34DIR_LOCMERGE     := $(DIR_FILTERCFGOUT)$/ui$/merge
35DIR_LANGPACK     := $(DIR_FILTERCFGOUT)$/ui$/langpacks
36DIR_MODPACKS     := $(DIR_FILTERCFGOUT)$/modulepacks
37
38INCLUDE_FRAGMENTS = \
39	 $(PRJ)$/source$/config$/fragments$/fcfg_base.mk \
40	 $(PRJ)$/source$/config$/fragments$/fcfg_database.mk \
41	 $(PRJ)$/source$/config$/fragments$/fcfg_writer.mk \
42	 $(PRJ)$/source$/config$/fragments$/fcfg_web.mk \
43	 $(PRJ)$/source$/config$/fragments$/fcfg_global.mk \
44	 $(PRJ)$/source$/config$/fragments$/fcfg_w4w.mk \
45	 $(PRJ)$/source$/config$/fragments$/fcfg_calc.mk \
46	 $(PRJ)$/source$/config$/fragments$/fcfg_draw.mk \
47	 $(PRJ)$/source$/config$/fragments$/fcfg_impress.mk \
48	 $(PRJ)$/source$/config$/fragments$/fcfg_database.mk \
49	 $(PRJ)$/source$/config$/fragments$/fcfg_chart.mk \
50	 $(PRJ)$/source$/config$/fragments$/fcfg_math.mk \
51	 $(PRJ)$/source$/config$/fragments$/fcfg_xslt.mk \
52	 $(PRJ)$/source$/config$/fragments$/fcfg_palm.mk \
53	 $(PRJ)$/source$/config$/fragments$/fcfg_pocketword.mk \
54	 $(PRJ)$/source$/config$/fragments$/fcfg_pocketexcel.mk \
55	 $(PRJ)$/source$/config$/fragments$/fcfg_drawgraphics.mk \
56	 $(PRJ)$/source$/config$/fragments$/fcfg_impressgraphics.mk \
57	 $(PRJ)$/source$/config$/fragments$/fcfg_internalgraphics.mk
58
59.IF "$(WITH_BINFILTER)" != "NO"
60INCLUDE_FRAGMENTS += \
61	 $(PRJ)$/source$/config$/fragments$/fcfg_writer_bf.mk \
62	 $(PRJ)$/source$/config$/fragments$/fcfg_web_bf.mk \
63	 $(PRJ)$/source$/config$/fragments$/fcfg_global_bf.mk \
64	 $(PRJ)$/source$/config$/fragments$/fcfg_calc_bf.mk \
65	 $(PRJ)$/source$/config$/fragments$/fcfg_draw_bf.mk \
66	 $(PRJ)$/source$/config$/fragments$/fcfg_impress_bf.mk \
67	 $(PRJ)$/source$/config$/fragments$/fcfg_chart_bf.mk \
68	 $(PRJ)$/source$/config$/fragments$/fcfg_math_bf.mk
69.ENDIF
70
71.INCLUDE: $(INCLUDE_FRAGMENTS)
72