]> git.wh0rd.org - fontconfig.git/blame - fc-cache/Makefile.am
Cleanup copyright notices to replace "Keith Packard" with "the author(s)"
[fontconfig.git] / fc-cache / Makefile.am
CommitLineData
20fa60c9 1#
e690fbb2 2# fontconfig/fc-cache/Makefile.am
20fa60c9 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
5aaf466d 10# documentation, and that the name of the author(s) not be used in
20fa60c9 11# advertising or publicity pertaining to distribution of the software without
5aaf466d 12# specific, written prior permission. The authors make no
20fa60c9
KP
13# representations about the suitability of this software for any purpose. It
14# is provided "as is" without express or implied warranty.
15#
3074a73b 16# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
20fa60c9 17# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
3074a73b 18# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
20fa60c9
KP
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
75839218 24DOC2MAN = docbook2man
394b2bf0
KP
25
26FC_CACHE_SRC=${top_srcdir}/fc-cache
27
28SGML = ${FC_CACHE_SRC}/fc-cache.sgml
75839218 29
8a3dc488
TL
30if OS_WIN32
31else
80ba0571 32install-data-local:
bf0c80fc 33 -$(mkinstalldirs) "$(DESTDIR)$(fc_cachedir)"
83b67390 34
80ba0571 35uninstall-local:
bf0c80fc 36 -$(RM) -rf "$(DESTDIR)$(fc_cachedir)"
8a3dc488 37endif
3bfae75d 38
32fed457 39INCLUDES=-I${top_srcdir} -I${top_srcdir}/src $(WARN_CFLAGS)
20fa60c9
KP
40
41bin_PROGRAMS=fc-cache
42
ba884599 43BUILT_MANS=fc-cache.1
43d04545 44
ba884599
EA
45if ENABLE_DOCS
46man_MANS=${BUILT_MANS}
47endif
48
49EXTRA_DIST=fc-cache.sgml $(BUILT_MANS)
8cfb3739 50
32fed457 51fc_cache_LDADD = ${top_builddir}/src/libfontconfig.la
75839218
JM
52
53if USEDOCBOOK
d098e4eb 54
f6d78431 55${man_MANS}: ${SGML}
75839218 56 $(RM) $@
394b2bf0 57 $(DOC2MAN) ${SGML}
98d765a5 58 $(RM) manpage.*
f6d78431 59
75839218 60all-local: $(man_MANS)
f6d78431 61
75839218
JM
62clean-local:
63 $(RM) $(man_MANS)
f6d78431 64
75839218
JM
65else
66all-local:
67clean-local:
68endif