| 1 | # Copyright 1999-2009 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 | # Copyright (C) 2003 - 2008 GraphicsMagick Group |
|---|
| 16 | # |
|---|
| 17 | # Makefile for Magick ImageMagick configuration files. |
|---|
| 18 | |
|---|
| 19 | # Where architecture-independent configuration files get installed |
|---|
| 20 | # (share/ImageMagick-version) |
|---|
| 21 | configsharedir = $(SHARE_CONFIGURE_PATH) |
|---|
| 22 | configshare_DATA = \ |
|---|
| 23 | config/coder.xml \ |
|---|
| 24 | config/colors.xml \ |
|---|
| 25 | config/log.xml \ |
|---|
| 26 | config/magic.xml \ |
|---|
| 27 | config/mime.xml \ |
|---|
| 28 | config/sRGB.icm \ |
|---|
| 29 | config/thresholds.xml |
|---|
| 30 | |
|---|
| 31 | # Where architecture-dependent configuration files get installed |
|---|
| 32 | # (lib/ImageMagick-version) |
|---|
| 33 | configlibdir = $(CONFIGURE_PATH) |
|---|
| 34 | configlib_DATA = \ |
|---|
| 35 | config/configure.xml \ |
|---|
| 36 | config/delegates.xml \ |
|---|
| 37 | config/english.xml \ |
|---|
| 38 | config/francais.xml \ |
|---|
| 39 | config/locale.xml \ |
|---|
| 40 | config/policy.xml \ |
|---|
| 41 | config/type.xml \ |
|---|
| 42 | config/type-ghostscript.xml \ |
|---|
| 43 | config/type-windows.xml |
|---|
| 44 | |
|---|
| 45 | CONFIG_EXTRA_DIST = \ |
|---|
| 46 | config/coder.xml \ |
|---|
| 47 | config/colors.xml \ |
|---|
| 48 | config/config.h.in \ |
|---|
| 49 | config/delegates.xml.in \ |
|---|
| 50 | config/english.xml \ |
|---|
| 51 | config/francais.xml \ |
|---|
| 52 | config/ImageMagick.rdf.in \ |
|---|
| 53 | config/lndir.sh \ |
|---|
| 54 | config/locale.xml \ |
|---|
| 55 | config/log.xml \ |
|---|
| 56 | config/magic.xml \ |
|---|
| 57 | config/mime.xml \ |
|---|
| 58 | config/policy.xml \ |
|---|
| 59 | config/sRGB.icm \ |
|---|
| 60 | config/thresholds.xml \ |
|---|
| 61 | config/type-ghostscript.xml.in \ |
|---|
| 62 | config/type-windows.xml.in \ |
|---|
| 63 | config/type.xml.in |
|---|