Blame conf.d/Makefile.am

Packit 352660
# 
Packit 352660
#  fontconfig/conf.d/Makefile.am
Packit 352660
# 
Packit 352660
#  Copyright © 2005 Keith Packard
Packit 352660
# 
Packit 352660
#  Permission to use, copy, modify, distribute, and sell this software and its
Packit 352660
#  documentation for any purpose is hereby granted without fee, provided that
Packit 352660
#  the above copyright notice appear in all copies and that both that
Packit 352660
#  copyright notice and this permission notice appear in supporting
Packit 352660
#  documentation, and that the name of the author(s) not be used in
Packit 352660
#  advertising or publicity pertaining to distribution of the software without
Packit 352660
#  specific, written prior permission.  The authors make no
Packit 352660
#  representations about the suitability of this software for any purpose.  It
Packit 352660
#  is provided "as is" without express or implied warranty.
Packit 352660
# 
Packit 352660
#  THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
Packit 352660
#  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
Packit 352660
#  EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
Packit 352660
#  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
Packit 352660
#  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
Packit 352660
#  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
Packit 352660
#  PERFORMANCE OF THIS SOFTWARE.
Packit 352660
Packit 352660
BUILT_SOURCES = README
Packit 352660
DOC_SOURCES = README.in
Packit 352660
DOC_FILES = $(DOC_SOURCES:.in=)
Packit 352660
Packit 352660
CONF_LINKS = \
Packit 352660
	10-hinting-$(PREFERRED_HINTING).conf	\
Packit 352660
	10-scale-bitmap-fonts.conf \
Packit 352660
	20-unhint-small-vera.conf \
Packit 352660
	30-metric-aliases.conf \
Packit 352660
	40-nonlatin.conf \
Packit 352660
	45-generic.conf \
Packit 352660
	45-latin.conf \
Packit 352660
	49-sansserif.conf \
Packit 352660
	50-user.conf \
Packit 352660
	51-local.conf \
Packit 352660
	60-generic.conf \
Packit 352660
	60-latin.conf \
Packit 352660
	65-fonts-persian.conf \
Packit 352660
	65-nonlatin.conf \
Packit 352660
	69-unifont.conf \
Packit 352660
	80-delicious.conf \
Packit 352660
	90-synthetic.conf
Packit 352660
Packit 352660
EXTRA_DIST = $(template_DATA) $(DOC_SOURCES)
Packit 352660
CLEANFILES = $(DOC_FILES)
Packit 352660
Packit 352660
configdir = $(CONFIGDIR)
Packit 352660
config_DATA = $(DOC_FILES)
Packit 352660
Packit 352660
templatedir = $(TEMPLATEDIR)
Packit 352660
template_DATA =				\
Packit 352660
	10-autohint.conf		\
Packit 352660
	10-hinting-full.conf		\
Packit 352660
	10-hinting-medium.conf		\
Packit 352660
	10-hinting-none.conf		\
Packit 352660
	10-hinting-slight.conf		\
Packit 352660
	10-no-sub-pixel.conf		\
Packit 352660
	10-scale-bitmap-fonts.conf	\
Packit 352660
	10-sub-pixel-bgr.conf		\
Packit 352660
	10-sub-pixel-rgb.conf		\
Packit 352660
	10-sub-pixel-vbgr.conf		\
Packit 352660
	10-sub-pixel-vrgb.conf		\
Packit 352660
	10-unhinted.conf		\
Packit 352660
	11-lcdfilter-default.conf	\
Packit 352660
	11-lcdfilter-legacy.conf	\
Packit 352660
	11-lcdfilter-light.conf		\
Packit 352660
	20-unhint-small-vera.conf	\
Packit 352660
	25-unhint-nonlatin.conf		\
Packit 352660
	30-metric-aliases.conf		\
Packit 352660
	40-nonlatin.conf		\
Packit 352660
	45-generic.conf			\
Packit 352660
	45-latin.conf			\
Packit 352660
	49-sansserif.conf		\
Packit 352660
	50-user.conf			\
Packit 352660
	51-local.conf			\
Packit 352660
	60-generic.conf			\
Packit 352660
	60-latin.conf			\
Packit 352660
	65-fonts-persian.conf		\
Packit 352660
	65-khmer.conf			\
Packit 352660
	65-nonlatin.conf		\
Packit 352660
	69-unifont.conf			\
Packit 352660
	70-no-bitmaps.conf		\
Packit 352660
	70-yes-bitmaps.conf		\
Packit 352660
	80-delicious.conf		\
Packit 352660
	90-synthetic.conf
Packit 352660
Packit 352660
README: $(srcdir)/README.in
Packit 352660
	sed "s|\@TEMPLATEDIR\@|$(templatedir)|" $< > $@
Packit 352660
Packit 352660
install-data-hook:
Packit 352660
	mkdir -p $(DESTDIR)$(configdir)
Packit 352660
	@(echo cd $(DESTDIR)$(configdir);			\
Packit 352660
	  cd $(DESTDIR)$(configdir);				\
Packit 352660
	  for i in $(CONF_LINKS); do				\
Packit 352660
	    echo $(RM) $$i";" ln -s $(templatedir)/$$i .;	\
Packit 352660
	    $(RM) $$i;						\
Packit 352660
	    ln -s $(templatedir)/$$i .;				\
Packit 352660
	  done)
Packit 352660
uninstall-local:
Packit 352660
	@(echo cd $(DESTDIR)$(configdir);			\
Packit 352660
	  cd $(DESTDIR)$(configdir);				\
Packit 352660
	  for i in $(CONF_LINKS); do				\
Packit 352660
	    echo $(RM) $$i;					\
Packit 352660
	    $(RM) $$i;						\
Packit 352660
	  done)
Packit 352660
Packit 352660
-include $(top_srcdir)/git.mk