Use AM_MISSING_PROG instead of hardcoding missing
[platform/upstream/fontconfig.git] / Makefile.am
1
2 #  fontconfig/Makefile.am
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 the author(s) not be used in
11 #  advertising or publicity pertaining to distribution of the software without
12 #  specific, written prior permission.  The authors make 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 #  THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 #  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 #  EVENT SHALL THE AUTHOR(S) 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 SUBDIRS=fontconfig fc-case fc-lang fc-glyphname src \
25         fc-cache fc-cat fc-list fc-match fc-pattern fc-query fc-scan \
26         fc-validate conf.d test
27 if ENABLE_DOCS
28 SUBDIRS += doc
29 DIST_SUBDIRS = $(SUBDIRS)
30 else
31 DIST_SUBDIRS = $(SUBDIRS) doc
32 endif
33
34 AUTOMAKE_OPTIONS = dist-bzip2
35 ACLOCAL_AMFLAGS = -I m4
36
37 EXTRA_DIST = \
38         fontconfig.pc.in \
39         fonts.conf.in \
40         fonts.dtd \
41         fontconfig.spec.in \
42         fontconfig.spec \
43         fontconfig-zip.in \
44         config-fixups.h
45 CLEANFILES = fonts.conf
46 DISTCLEANFILES = config.cache doltcompile
47 MAINTAINERCLEANFILES = \
48         $(srcdir)/aclocal.m4 \
49         $(srcdir)/autoscan.log \
50         $(srcdir)/compile \
51         $(srcdir)/config.guess \
52         $(srcdir)/config.h.in \
53         $(srcdir)/config.sub \
54         $(srcdir)/configure.scan \
55         $(srcdir)/depcomp \
56         $(srcdir)/install-sh \
57         $(srcdir)/ltmain.sh \
58         $(srcdir)/missing \
59         $(srcdir)/mkinstalldirs \
60         `find "$(srcdir)" -type f -name Makefile.in -print`
61
62 pkgconfig_DATA = fontconfig.pc
63
64 baseconfigdir = $(BASECONFIGDIR)
65 configdir = $(CONFIGDIR)
66
67 xmldir = $(XMLDIR)
68 xml_DATA = fonts.dtd
69
70 if CROSS_COMPILING
71   RUN_FC_CACHE_TEST=false
72 else
73   RUN_FC_CACHE_TEST=test -z "$(DESTDIR)"
74 endif
75
76 # Creating ChangeLog from git log:
77
78 MAINTAINERCLEANFILES += $(srcdir)/ChangeLog
79 EXTRA_DIST += ChangeLog
80 ChangeLog: $(srcdir)/ChangeLog
81 $(srcdir)/ChangeLog:
82         if test -d "$(srcdir)/.git"; then \
83           (GIT_DIR=$(top_srcdir)/.git $(GIT) log --stat) | fmt --split-only > $@.tmp \
84           && mv -f $@.tmp $@ \
85           || ($(RM) $@.tmp; \
86               echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
87               (test -f $@ || echo git-log is required to generate this file >> $@)); \
88         else \
89           test -f $@ || \
90           (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
91           echo A git checkout and git-log is required to generate this file >> $@); \
92         fi
93
94 .PHONY: ChangeLog
95
96 fonts.conf: fonts.conf.in Makefile
97         sed \
98                 -e 's,@FC_CACHEDIR\@,$(FC_CACHEDIR),g' \
99                 -e 's,@FC_DEFAULT_FONTS\@,$(FC_DEFAULT_FONTS),g' \
100                 -e 's,@FC_FONTPATH\@,$(FC_FONTPATH),g' \
101                 -e 's,@CONFIGDIR\@,$(CONFIGDIR),g' \
102                 -e 's,@PACKAGE\@,$(PACKAGE),g' \
103                 -e 's,@VERSION\@,$(VERSION),g' \
104                 $(srcdir)/$@.in > $@.tmp && \
105         mv $@.tmp $@
106
107 install-data-local: fonts.conf
108         $(mkinstalldirs) $(DESTDIR)$(baseconfigdir) $(DESTDIR)$(fc_cachedir)
109         if [ -f $(DESTDIR)$(baseconfigdir)/fonts.conf ]; then \
110           echo "backing up existing $(DESTDIR)$(baseconfigdir)/fonts.conf"; \
111           mv $(DESTDIR)$(baseconfigdir)/fonts.conf $(DESTDIR)$(baseconfigdir)/fonts.conf.bak; \
112         fi
113         if [ -f $(srcdir)/fonts.conf ]; then \
114           echo " $(INSTALL_DATA) $(srcdir)/fonts.conf $(DESTDIR)$(baseconfigdir)/fonts.conf"; \
115           $(INSTALL_DATA) $(srcdir)/fonts.conf $(DESTDIR)$(baseconfigdir)/fonts.conf; \
116         else if [ -f fonts.conf ]; then \
117           echo " $(INSTALL_DATA) fonts.conf $(DESTDIR)$(baseconfigdir)/fonts.conf"; \
118           $(INSTALL_DATA) fonts.conf $(DESTDIR)$(baseconfigdir)/fonts.conf; \
119         fi; fi
120         @(if $(RUN_FC_CACHE_TEST); then \
121             echo "fc-cache$(EXEEXT) -s -f -v"; \
122             fc-cache/fc-cache$(EXEEXT) -s -f -v; \
123         else \
124             echo "***"; \
125             echo "*** Warning: fonts.cache not built"; \
126             echo "***"; \
127             echo "*** Generate this file manually on host system using fc-cache"; \
128             echo "***"; \
129         fi)
130
131 uninstall-local:
132         if [ -f $(srcdir)/fonts.conf ]; then \
133           if cmp -s $(srcdir)/fonts.conf $(DESTDIR)$(baseconfigdir)/fonts.conf; then \
134              echo " uninstall standard $(DESTDIR)$(baseconfigdir)/fonts.conf"; \
135              $(RM) $(DESTDIR)$(baseconfigdir)/fonts.conf; \
136           fi; \
137         else if [ -f fonts.conf ]; then \
138           if cmp -s fonts.conf $(DESTDIR)$(baseconfigdir)/fonts.conf; then \
139              echo " uninstall standard $(DESTDIR)$(baseconfigdir)/fonts.conf"; \
140              $(RM) $(DESTDIR)$(baseconfigdir)/fonts.conf; \
141           fi; \
142         fi; fi
143
144 debuild debuild-signed: debuild-dirs
145         (cd $(distdir)/debian && debuild)
146
147 debuild-unsigned: debuild-dirs
148         (cd $(distdir)/debian && debuild -us -uc)
149
150 debuild-dirs: distdir
151         $(RM) $(PACKAGE)_$(VERSION).orig.tar.gz
152         $(RM) -r $(distdir).orig
153         cp -a $(distdir) $(distdir).orig
154         $(RM) -r $(distdir).orig/debian
155
156 DISTCHECK_CONFIGURE_FLAGS =
157
158 -include $(top_srcdir)/git.mk