Makefile.am revision 2c393a42
1# 2# $Id: Makefile.am,v 1.1.1.1 2008/07/30 01:24:09 mrg Exp $ 3# 4# Copyright © 2003 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 24DOCSRC=@DOCSRC@ 25SUBDIRS=fontconfig fc-case fc-lang fc-glyphname fc-arch src \ 26 fc-cache fc-cat fc-list fc-match conf.d $(DOCSRC) test 27 28EXTRA_DIST = \ 29 fontconfig.pc.in \ 30 fonts.conf.in \ 31 fonts.dtd \ 32 fontconfig.spec.in \ 33 fontconfig.spec \ 34 fontconfig-zip.in 35DISTCLEANFILES = config.cache ChangeLog doltcompile 36MAINTAINERCLEANFILES = \ 37 $(srcdir)/aclocal.m4 \ 38 $(srcdir)/autoscan.log \ 39 $(srcdir)/compile \ 40 $(srcdir)/config.guess \ 41 $(srcdir)/config.h.in \ 42 $(srcdir)/config.sub \ 43 $(srcdir)/configure.scan \ 44 $(srcdir)/depcomp \ 45 $(srcdir)/install-sh \ 46 $(srcdir)/ltmain.sh \ 47 $(srcdir)/missing \ 48 $(srcdir)/mkinstalldirs \ 49 `find "$(srcdir)" -type f -name Makefile.in -print` 50 51pkgconfigdir=$(libdir)/pkgconfig 52pkgconfig_DATA = fontconfig.pc 53 54configdir=$(CONFDIR) 55config_DATA=fonts.dtd 56 57if CROSS_COMPILING 58 RUN_FC_CACHE_TEST=false 59else 60 RUN_FC_CACHE_TEST=test -z "$(DESTDIR)" 61endif 62 63# Creating ChangeLog from git log: 64 65MAINTAINERCLEANFILES += ChangeLog 66 67EXTRA_DIST += ChangeLog 68 69ChangeLog: 70 if test -d "$(srcdir)/.git"; then \ 71 (GIT_DIR=$(top_srcdir)/.git ./missing --run git-log --stat) | fmt --split-only > $@.tmp \ 72 && mv -f $@.tmp $@ \ 73 || ($(RM) $@.tmp; \ 74 echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \ 75 (test -f $@ || echo git-log is required to generate this file >> $@)); \ 76 else \ 77 test -f $@ || \ 78 (echo A git checkout and git-log is required to generate ChangeLog >&2 && \ 79 echo A git checkout and git-log is required to generate this file >> $@); \ 80 fi 81 82.PHONY: ChangeLog 83 84install-data-local: 85 $(mkinstalldirs) $(DESTDIR)$(configdir) $(DESTDIR)$(fc_cachedir) 86 if [ -f $(DESTDIR)$(configdir)/fonts.conf ]; then \ 87 echo "backing up existing $(DESTDIR)$(configdir)/fonts.conf"; \ 88 mv $(DESTDIR)$(configdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf.bak; \ 89 fi 90 if [ -f $(srcdir)/fonts.conf ]; then \ 91 echo " $(INSTALL_DATA) $(srcdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf"; \ 92 $(INSTALL_DATA) $(srcdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf; \ 93 else if [ -f fonts.conf ]; then \ 94 echo " $(INSTALL_DATA) fonts.conf $(DESTDIR)$(configdir)/fonts.conf"; \ 95 $(INSTALL_DATA) fonts.conf $(DESTDIR)$(configdir)/fonts.conf; \ 96 fi; fi 97 @(if $(RUN_FC_CACHE_TEST); then \ 98 echo " $(bindir)/fc-cache -s -f -v"; \ 99 $(bindir)/fc-cache -s -f -v; \ 100 else \ 101 echo "***"; \ 102 echo "*** Warning: fonts.cache not built"; \ 103 echo "***"; \ 104 echo "*** Generate this file manually on host system using fc-cache"; \ 105 echo "***"; \ 106 fi) 107 108uninstall-local: 109 if [ -f $(srcdir)/fonts.conf ]; then \ 110 if cmp -s $(srcdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf; then \ 111 echo " uninstall standard $(DESTDIR)$(configdir)/fonts.conf"; \ 112 rm -f $(DESTDIR)$(configdir)/fonts.conf; \ 113 fi; \ 114 else if [ -f fonts.conf ]; then \ 115 if cmp -s fonts.conf $(DESTDIR)$(configdir)/fonts.conf; then \ 116 echo " uninstall standard $(DESTDIR)$(configdir)/fonts.conf"; \ 117 rm -f $(DESTDIR)$(configdir)/fonts.conf; \ 118 fi; \ 119 fi; fi 120 121debuild debuild-signed: debuild-dirs 122 (cd $(distdir)/debian && debuild) 123 124debuild-unsigned: debuild-dirs 125 (cd $(distdir)/debian && debuild -us -uc) 126 127debuild-dirs: distdir 128 rm -f $(PACKAGE)_$(VERSION).orig.tar.gz 129 rm -rf $(distdir).orig 130 cp -a $(distdir) $(distdir).orig 131 rm -rf $(distdir).orig/debian 132