]> git.wh0rd.org - fontconfig.git/blame - conf.d/Makefile.am
Move conf.avail/README to conf.d/README (bug 13392)
[fontconfig.git] / conf.d / Makefile.am
CommitLineData
414f7202
KP
1#
2# $Id$
3#
4# Copyright © 2005 Keith Packard
5#
6# Permission to use, copy, modify, distribute, and sell this software and its
7# documentation for any purpose is hereby granted without fee, provided that
8# the above copyright notice appear in all copies and that both that
9# copyright notice and this permission notice appear in supporting
10# documentation, and that the name of Keith Packard not be used in
11# advertising or publicity pertaining to distribution of the software without
12# specific, written prior permission. Keith Packard makes no
13# representations about the suitability of this software for any purpose. It
14# is provided "as is" without express or implied warranty.
15#
16# KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18# EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22# PERFORMANCE OF THIS SOFTWARE.
23
6e5d2cb9
KP
24DOC_FILES= \
25 README
26
414f7202 27CONF_FILES = \
6c5619a0
KP
28 10-autohint.conf \
29 10-no-sub-pixel.conf \
30 10-sub-pixel-bgr.conf \
31 10-sub-pixel-rgb.conf \
32 10-sub-pixel-vbgr.conf \
33 10-sub-pixel-vrgb.conf \
34 10-unhinted.conf \
469010c1 35 20-fix-globaladvance.conf \
6c5619a0 36 20-unhint-small-vera.conf \
39968fb2 37 25-unhint-nonlatin.conf \
6c5619a0 38 30-urw-aliases.conf \
9bac3085 39 30-metric-aliases.conf \
4b51f173
BE
40 40-nonlatin.conf \
41 45-latin.conf \
6c5619a0 42 49-sansserif.conf \
469010c1
JC
43 50-user.conf \
44 51-local.conf \
6c5619a0
KP
45 60-latin.conf \
46 65-fonts-persian.conf \
47 65-nonlatin.conf \
48 69-unifont.conf \
49 70-no-bitmaps.conf \
50 70-yes-bitmaps.conf \
51 80-delicious.conf \
52 90-synthetic.conf
414f7202 53
9e292c88 54CONF_LINKS = \
9e292c88 55 20-fix-globaladvance.conf \
6c5619a0 56 20-unhint-small-vera.conf \
6c5619a0 57 30-urw-aliases.conf \
9bac3085 58 30-metric-aliases.conf \
4b51f173
BE
59 40-nonlatin.conf \
60 45-latin.conf \
6c5619a0 61 49-sansserif.conf \
9e292c88
KP
62 50-user.conf \
63 51-local.conf \
6c5619a0
KP
64 60-latin.conf \
65 65-fonts-persian.conf \
66 65-nonlatin.conf \
67 69-unifont.conf \
68 80-delicious.conf \
69 90-synthetic.conf
9e292c88 70
6e5d2cb9 71EXTRA_DIST = $(CONF_FILES) $(DOC_FILES)
414f7202
KP
72
73configdir=$(CONFDIR)
469010c1 74confavaildir=$(configdir)/conf.avail
9e292c88 75confddir=$(configdir)/conf.d
414f7202 76
469010c1 77confavail_DATA=$(CONF_FILES)
6e5d2cb9 78confd_DATA=$(DOC_FILES)
9e292c88
KP
79
80install-data-local:
81 mkdir -p ${DESTDIR}${confddir}
82 @(echo cd ${DESTDIR}${confddir}; \
83 cd ${DESTDIR}${confddir}; \
84 for i in ${CONF_LINKS}; do \
85 rm -f $$i; \
86 echo rm -f $$i";" ln -s ../conf.avail/$$i .; \
87 ln -s ../conf.avail/$$i .; \
88 done)