2003-06-09 18:53:31 +02:00
|
|
|
#
|
2008-08-13 09:30:23 +02:00
|
|
|
# fontconfig/fc-match/Makefile.am
|
2003-06-09 18:53:31 +02:00
|
|
|
#
|
2004-12-07 02:14:46 +01:00
|
|
|
# Copyright © 2003 Keith Packard
|
2003-06-09 18:53:31 +02:00
|
|
|
#
|
|
|
|
# Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
# documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
# the above copyright notice appear in all copies and that both that
|
|
|
|
# copyright notice and this permission notice appear in supporting
|
2010-11-10 22:45:42 +01:00
|
|
|
# documentation, and that the name of the author(s) not be used in
|
2003-06-09 18:53:31 +02:00
|
|
|
# advertising or publicity pertaining to distribution of the software without
|
2010-11-10 22:45:42 +01:00
|
|
|
# specific, written prior permission. The authors make no
|
2003-06-09 18:53:31 +02:00
|
|
|
# representations about the suitability of this software for any purpose. It
|
|
|
|
# is provided "as is" without express or implied warranty.
|
|
|
|
#
|
2009-03-12 21:00:08 +01:00
|
|
|
# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
2003-06-09 18:53:31 +02:00
|
|
|
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
2009-03-12 21:00:08 +01:00
|
|
|
# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
2003-06-09 18:53:31 +02:00
|
|
|
# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
# PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
bin_PROGRAMS=fc-match
|
|
|
|
|
2006-04-06 07:15:08 +02:00
|
|
|
DOC2MAN = docbook2man
|
|
|
|
|
|
|
|
FC_MATCH_SRC=${top_srcdir}/fc-match
|
|
|
|
|
|
|
|
SGML = ${FC_MATCH_SRC}/fc-match.sgml
|
2003-06-09 18:53:31 +02:00
|
|
|
|
2008-01-08 21:34:19 +01:00
|
|
|
INCLUDES=-I${top_srcdir} $(WARN_CFLAGS)
|
2003-06-09 18:53:31 +02:00
|
|
|
|
2008-04-18 20:52:41 +02:00
|
|
|
BUILT_MANS=fc-match.1
|
2007-10-25 10:26:09 +02:00
|
|
|
|
2008-04-18 20:52:41 +02:00
|
|
|
if ENABLE_DOCS
|
|
|
|
man_MANS=${BUILT_MANS}
|
|
|
|
endif
|
|
|
|
|
|
|
|
EXTRA_DIST=fc-match.sgml $(BUILT_MANS)
|
2003-06-09 18:53:31 +02:00
|
|
|
|
2008-01-08 21:34:19 +01:00
|
|
|
fc_match_LDADD = ${top_builddir}/src/libfontconfig.la
|
2006-04-06 07:15:08 +02:00
|
|
|
|
|
|
|
if USEDOCBOOK
|
|
|
|
|
|
|
|
${man_MANS}: ${SGML}
|
2012-03-16 03:55:30 +01:00
|
|
|
$(RM) $@
|
|
|
|
$(DOC2MAN) ${SGML}
|
|
|
|
$(RM) manpage.*
|
2006-04-06 07:15:08 +02:00
|
|
|
|
|
|
|
all-local: $(man_MANS)
|
|
|
|
|
|
|
|
clean-local:
|
2012-03-16 03:55:30 +01:00
|
|
|
$(RM) $(man_MANS)
|
2006-04-06 07:15:08 +02:00
|
|
|
|
|
|
|
else
|
|
|
|
all-local:
|
|
|
|
clean-local:
|
|
|
|
endif
|