|
Revision 1, 1.2 KB
(checked in by cristy, 3 months ago)
|
|
|
| Line | |
|---|
| 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.wizards-toolkit.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 the Wizard's Toolkit configuration files. |
|---|
| 16 | |
|---|
| 17 | # Where architecture-independent configuration files get installed |
|---|
| 18 | # (share/ImageMagick-version) |
|---|
| 19 | configsharedir = $(SHARE_CONFIGURE_PATH) |
|---|
| 20 | configshare_DATA = \ |
|---|
| 21 | config/log.xml \ |
|---|
| 22 | config/mime.xml |
|---|
| 23 | |
|---|
| 24 | # Where architecture-dependent configuration files get installed |
|---|
| 25 | # (lib/ImageMagick-version) |
|---|
| 26 | configlibdir = $(CONFIGURE_PATH) |
|---|
| 27 | configlib_DATA = \ |
|---|
| 28 | config/configure.xml |
|---|
| 29 | |
|---|
| 30 | CONFIG_EXTRA_DIST = \ |
|---|
| 31 | config/configure.xml \ |
|---|
| 32 | config/config.h.in \ |
|---|
| 33 | config/log.xml \ |
|---|
| 34 | config/mime.c \ |
|---|
| 35 | config/mime.xml |
|---|
| 36 | |
|---|
| 37 | |
|---|