Home | History | Annotate | Download | only in config
      1 #  Copyright 1999-2016 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 #    http://www.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)
     19 configsharedir = $(SHARE_PATH)
     20 configshare_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)
     27 configsharearchdir = $(SHAREARCH_PATH)
     28 configsharearch_DATA = \
     29 	config/configure.xml
     30 
     31 # Where architecture-dependent configuration files get installed
     32 # (share/ImageMagick-version)
     33 configlibdir =  $(CONFIGURE_PATH)
     34 configlib_DATA = \
     35 	config/coder.xml \
     36 	config/colors.xml \
     37 	config/delegates.xml \
     38 	config/log.xml \
     39 	config/magic.xml \
     40 	config/mime.xml \
     41 	config/policy.xml \
     42 	config/quantization-table.xml \
     43 	config/thresholds.xml \
     44 	config/type.xml \
     45 	config/type-apple.xml \
     46 	config/type-dejavu.xml \
     47 	config/type-ghostscript.xml \
     48 	config/type-windows.xml
     49 
     50 CONFIG_EXTRA_DIST = \
     51 	config/cmyk.icm \
     52 	config/coder.xml \
     53 	config/colors.xml \
     54 	config/config.h.in \
     55 	config/delegates.xml.in \
     56 	config/english.xml \
     57 	config/francais.xml \
     58 	config/ImageMagick.rc \
     59 	config/ImageMagick.rdf.in \
     60 	config/lndir.sh \
     61 	config/locale.xml \
     62 	config/log.xml \
     63 	config/magic.xml \
     64 	config/mime.xml \
     65 	config/policy.xml \
     66 	config/quantization-table.xml \
     67 	config/sRGB.icm \
     68 	config/thresholds.xml \
     69 	config/type-apple.xml.in \
     70 	config/type-dejavu.xml.in \
     71 	config/type-ghostscript.xml.in \
     72 	config/type-windows.xml.in \
     73 	config/type.xml.in
     74