Blame fc-list/Makefile.am

Packit 352660
# 
Packit 352660
#  fontconfig/fc-list/Makefile.am
Packit 352660
# 
Packit 352660
#  Copyright © 2003 Keith Packard
Packit 352660
# 
Packit 352660
#  Permission to use, copy, modify, distribute, and sell this software and its
Packit 352660
#  documentation for any purpose is hereby granted without fee, provided that
Packit 352660
#  the above copyright notice appear in all copies and that both that
Packit 352660
#  copyright notice and this permission notice appear in supporting
Packit 352660
#  documentation, and that the name of the author(s) not be used in
Packit 352660
#  advertising or publicity pertaining to distribution of the software without
Packit 352660
#  specific, written prior permission.  The authors make no
Packit 352660
#  representations about the suitability of this software for any purpose.  It
Packit 352660
#  is provided "as is" without express or implied warranty.
Packit 352660
# 
Packit 352660
#  THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
Packit 352660
#  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
Packit 352660
#  EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
Packit 352660
#  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
Packit 352660
#  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
Packit 352660
#  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
Packit 352660
#  PERFORMANCE OF THIS SOFTWARE.
Packit 352660
Packit 352660
DOC2MAN = docbook2man
Packit 352660
Packit 352660
FC_LIST_SRC=${top_srcdir}/fc-list
Packit 352660
Packit 352660
SGML = ${FC_LIST_SRC}/fc-list.sgml
Packit 352660
Packit 352660
bin_PROGRAMS=fc-list
Packit 352660
Packit 352660
AM_CPPFLAGS=-I${top_srcdir} $(WARN_CFLAGS)
Packit 352660
Packit 352660
BUILT_MANS=fc-list.1
Packit 352660
Packit 352660
if ENABLE_DOCS
Packit 352660
man_MANS=${BUILT_MANS}
Packit 352660
endif
Packit 352660
Packit 352660
EXTRA_DIST=fc-list.sgml $(BUILT_MANS)
Packit 352660
Packit 352660
CLEANFILES =
Packit 352660
Packit 352660
fc_list_LDADD = ${top_builddir}/src/libfontconfig.la
Packit 352660
Packit 352660
if USEDOCBOOK
Packit 352660
Packit 352660
${man_MANS}: ${SGML}
Packit 352660
	$(AM_V_GEN) $(RM) $@; \
Packit 352660
	$(DOC2MAN) ${SGML}; \
Packit 352660
	$(RM) manpage.*
Packit 352660
Packit 352660
all-local: $(man_MANS)
Packit 352660
Packit 352660
CLEANFILES += ${man_MANS}
Packit 352660
else
Packit 352660
all-local:
Packit 352660
endif
Packit 352660
Packit 352660
-include $(top_srcdir)/git.mk