]> git.wh0rd.org - fontconfig.git/blame - Makefile.am
Remove ChangeLog
[fontconfig.git] / Makefile.am
CommitLineData
20fa60c9
KP
1#
2# $Id$
3#
46b51147 4# Copyright © 2003 Keith Packard
20fa60c9
KP
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
2b45ef3a 24DOCSRC=@DOCSRC@
2b629781 25SUBDIRS=fontconfig fc-case fc-lang fc-glyphname fc-arch src \
f28f090d 26 fc-cache fc-cat fc-list fc-match conf.d $(DOCSRC) test
dc2e06ab 27
20fa60c9
KP
28EXTRA_DIST = \
29 fontconfig.pc.in \
30 fonts.conf.in \
31 fonts.dtd \
8fc10a72 32 fontconfig.spec.in \
daeed6e0 33 fontconfig.spec \
fd11da84 34 fontconfig-zip.in
20fa60c9
KP
35
36pkgconfigdir=$(libdir)/pkgconfig
37pkgconfig_DATA = fontconfig.pc
38
39configdir=$(CONFDIR)
4f27c1c0 40config_DATA=fonts.dtd
20fa60c9 41
d8ae9c92
KP
42if CROSS_COMPILING
43 RUN_FC_CACHE_TEST=false
44else
45 RUN_FC_CACHE_TEST=test -z "$(DESTDIR)"
46endif
47
20fa60c9 48install-data-local:
c641c77d 49 $(mkinstalldirs) $(DESTDIR)$(configdir)
4f27c1c0
KP
50 if [ -f $(DESTDIR)$(configdir)/fonts.conf ]; then \
51 echo "backing up existing $(DESTDIR)$(configdir)/fonts.conf"; \
52 mv $(DESTDIR)$(configdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf.bak; \
53 fi
54 if [ -f $(srcdir)/fonts.conf ]; then \
55 echo " $(INSTALL_DATA) $(srcdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf"; \
56 $(INSTALL_DATA) $(srcdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf; \
57 else if [ -f fonts.conf ]; then \
58 echo " $(INSTALL_DATA) fonts.conf $(DESTDIR)$(configdir)/fonts.conf"; \
59 $(INSTALL_DATA) fonts.conf $(DESTDIR)$(configdir)/fonts.conf; \
60 fi; fi
b152a85b 61 @(if $(RUN_FC_CACHE_TEST); then \
fd7223c7 62 echo " fc-cache/fc-cache -s -f -v"; \
cfccd487 63 fc-cache/fc-cache -s -f -v; \
d8ae9c92 64 else \
b152a85b
PL
65 echo "***"; \
66 echo "*** Warning: fonts.cache not built"; \
67 echo "***"; \
68 echo "*** Generate this file manually on host system using fc-cache"; \
69 echo "***"; \
70 fi)
fc2cc873
KP
71
72uninstall-local:
73 if [ -f $(srcdir)/fonts.conf ]; then \
74 if cmp -s $(srcdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf; then \
75 echo " uninstall standard $(DESTDIR)$(configdir)/fonts.conf"; \
76 rm -f $(DESTDIR)$(configdir)/fonts.conf; \
77 fi; \
78 else if [ -f fonts.conf ]; then \
79 if cmp -s fonts.conf $(DESTDIR)$(configdir)/fonts.conf; then \
80 echo " uninstall standard $(DESTDIR)$(configdir)/fonts.conf"; \
81 rm -f $(DESTDIR)$(configdir)/fonts.conf; \
82 fi; \
83 fi; fi
dc2e06ab
KP
84
85debuild debuild-signed: debuild-dirs
86 (cd $(distdir)/debian && debuild)
87
88debuild-unsigned: debuild-dirs
89 (cd $(distdir)/debian && debuild -us -uc)
90
91debuild-dirs: distdir
92 rm -f $(PACKAGE)_$(VERSION).orig.tar.gz
93 rm -rf $(distdir).orig
94 cp -a $(distdir) $(distdir).orig
95 rm -rf $(distdir).orig/debian