• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#  Copyright 1999-2019 ImageMagick Studio LLC, a non-profit organization
2#  dedicated to making software imaging solutions freely available.
3#
4#  You may not use this file except in compliance with the License.  You may
5#  obtain a copy of the License at
6#
7#    https://imagemagick.org/script/license.php
8#
9#  Unless required by applicable law or agreed to in writing, software
10#  distributed under the License is distributed on an "AS IS" BASIS,
11#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12#  See the License for the specific language governing permissions and
13#  limitations under the License.
14#
15#  Makefile for Magick ImageMagick configuration files.
16
17# Where architecture-independent configuration files get installed
18# (share/ImageMagick-version)
19configsharedir = $(SHARE_PATH)
20configshare_DATA = \
21	config/english.xml \
22	config/francais.xml \
23	config/locale.xml
24
25# Where architecture-dependent configuration files get installed
26# (share/arch/ImageMagick-version)
27configsharearchdir = $(SHAREARCH_PATH)
28configsharearch_DATA = \
29	config/configure.xml
30
31# Where architecture-dependent configuration files get installed
32# (share/ImageMagick-version)
33configlibdir =  $(CONFIGURE_PATH)
34configlib_DATA = \
35	config/colors.xml \
36	config/delegates.xml \
37	config/log.xml \
38	config/mime.xml \
39	config/policy.xml \
40	config/quantization-table.xml \
41	config/thresholds.xml \
42	config/type.xml \
43	config/type-apple.xml \
44	config/type-dejavu.xml \
45	config/type-ghostscript.xml \
46	config/type-urw-base35.xml \
47	config/type-windows.xml
48
49CONFIG_EXTRA_DIST = \
50	config/cmyk.icm \
51	config/colors.xml \
52	config/config.h.in \
53	config/delegates.xml.in \
54	config/english.xml \
55	config/francais.xml \
56	config/ImageMagick.rc \
57	config/ImageMagick.rdf.in \
58	config/lndir.sh \
59	config/locale.md \
60	config/locale.xml \
61	config/log.xml \
62	config/mime.xml \
63	config/policy.xml \
64	config/quantization-table.xml \
65	config/sRGB.icm \
66	config/thresholds.xml \
67	config/type-apple.xml.in \
68	config/type-dejavu.xml.in \
69	config/type-ghostscript.xml.in \
70	config/type-urw-base35.xml.in \
71	config/type-windows.xml.in \
72	config/type.xml.in
73