]> git.wh0rd.org Git - fontconfig.git/blob - conf.d/Makefile.am
Split much of the configuration into separate files. Renumber files
[fontconfig.git] / conf.d / Makefile.am
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
24 CONF_FILES = \
25         README \
26         10-autohint.conf \
27         10-no-sub-pixel.conf \
28         10-sub-pixel-bgr.conf \
29         10-sub-pixel-rgb.conf \
30         10-sub-pixel-vbgr.conf \
31         10-sub-pixel-vrgb.conf \
32         10-unhinted.conf \
33         20-fix-globaladvance.conf \
34         20-lohit-gujarati.conf \
35         20-unhint-small-vera.conf \
36         30-amt-aliases.conf \
37         30-urw-aliases.conf \
38         40-generic.conf \
39         49-sansserif.conf \
40         50-user.conf \
41         51-local.conf \
42         60-latin.conf \
43         65-fonts-persian.conf \
44         65-nonlatin.conf \
45         69-unifont.conf \
46         70-no-bitmaps.conf \
47         70-yes-bitmaps.conf \
48         80-delicious.conf \
49         90-synthetic.conf
50
51 CONF_LINKS = \
52         20-fix-globaladvance.conf \
53         20-lohit-gujarati.conf \
54         20-unhint-small-vera.conf \
55         30-amt-aliases.conf \
56         30-urw-aliases.conf \
57         40-generic.conf \
58         49-sansserif.conf \
59         50-user.conf \
60         51-local.conf \
61         60-latin.conf \
62         65-fonts-persian.conf \
63         65-nonlatin.conf \
64         69-unifont.conf \
65         80-delicious.conf \
66         90-synthetic.conf
67
68 EXTRA_DIST = $(CONF_FILES)
69
70 configdir=$(CONFDIR)
71 confavaildir=$(configdir)/conf.avail
72 confddir=$(configdir)/conf.d
73
74 confavail_DATA=$(CONF_FILES)
75
76 install-data-local:
77         mkdir -p ${DESTDIR}${confddir}
78         @(echo cd ${DESTDIR}${confddir}; \
79          cd ${DESTDIR}${confddir}; \
80          for i in ${CONF_LINKS}; do \
81                 rm -f $$i; \
82                 echo rm -f $$i";" ln -s ../conf.avail/$$i .; \
83                 ln -s ../conf.avail/$$i .; \
84          done)