1#**************************************************************
2#
3#  Licensed to the Apache Software Foundation (ASF) under one
4#  or more contributor license agreements.  See the NOTICE file
5#  distributed with this work for additional information
6#  regarding copyright ownership.  The ASF licenses this file
7#  to you under the Apache License, Version 2.0 (the
8#  "License"); you may not use this file except in compliance
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22
23
24DIR_FILTERCFGOUT := $(MISC)$/filters
25.IF "$(WITH_LANG)"!=""
26DIR_LOCFRAG      := $(DIR_FILTERCFGOUT)$/ui$/fragments
27.ELSE			# "$(WITH_LANG)"!=""
28DIR_LOCFRAG      := $(PRJ)$/source$/config$/fragments
29.ENDIF			# "$(WITH_LANG)"!=""
30DIR_LOCMERGE     := $(DIR_FILTERCFGOUT)$/ui$/merge
31DIR_LANGPACK     := $(DIR_FILTERCFGOUT)$/ui$/langpacks
32DIR_MODPACKS     := $(DIR_FILTERCFGOUT)$/modulepacks
33
34INCLUDE_FRAGMENTS = \
35	 $(PRJ)$/source$/config$/fragments$/fcfg_base.mk \
36	 $(PRJ)$/source$/config$/fragments$/fcfg_database.mk \
37	 $(PRJ)$/source$/config$/fragments$/fcfg_writer.mk \
38	 $(PRJ)$/source$/config$/fragments$/fcfg_web.mk \
39	 $(PRJ)$/source$/config$/fragments$/fcfg_global.mk \
40	 $(PRJ)$/source$/config$/fragments$/fcfg_w4w.mk \
41	 $(PRJ)$/source$/config$/fragments$/fcfg_calc.mk \
42	 $(PRJ)$/source$/config$/fragments$/fcfg_draw.mk \
43	 $(PRJ)$/source$/config$/fragments$/fcfg_impress.mk \
44	 $(PRJ)$/source$/config$/fragments$/fcfg_database.mk \
45	 $(PRJ)$/source$/config$/fragments$/fcfg_chart.mk \
46	 $(PRJ)$/source$/config$/fragments$/fcfg_math.mk \
47	 $(PRJ)$/source$/config$/fragments$/fcfg_xslt.mk \
48	 $(PRJ)$/source$/config$/fragments$/fcfg_palm.mk \
49	 $(PRJ)$/source$/config$/fragments$/fcfg_pocketword.mk \
50	 $(PRJ)$/source$/config$/fragments$/fcfg_pocketexcel.mk \
51	 $(PRJ)$/source$/config$/fragments$/fcfg_drawgraphics.mk \
52	 $(PRJ)$/source$/config$/fragments$/fcfg_impressgraphics.mk \
53	 $(PRJ)$/source$/config$/fragments$/fcfg_internalgraphics.mk
54
55.INCLUDE: $(INCLUDE_FRAGMENTS)
56