diff options
author | Patrick Lam <plam@MIT.EDU> | 2005-09-23 05:59:19 +0000 |
---|---|---|
committer | Patrick Lam <plam@MIT.EDU> | 2005-09-23 05:59:19 +0000 |
commit | f28f090d2537fc7dcc4fe71a84020a53d14027b4 (patch) | |
tree | 56bffdb2a1e82d8395cad9eb1ee56f29644b396e /fc-cat/Makefile.am | |
parent | a9698bed6553c12d397593292ee9e81054244e85 (diff) |
Add new command-line utility, fc-cat, to convert fonts.cache-2 files into
fonts.cache-1 files (e.g. for grepping and validation of the mmap
codepath), as per James Cloos' request.
Remove done 'TODO' comment.
Updates for development release 2.3.90.
Diffstat (limited to 'fc-cat/Makefile.am')
-rw-r--r-- | fc-cat/Makefile.am | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/fc-cat/Makefile.am b/fc-cat/Makefile.am new file mode 100644 index 0000000..cf34009 --- /dev/null +++ b/fc-cat/Makefile.am @@ -0,0 +1,55 @@ +# +# $Id$ +# +# Copyright © 2003 Keith Packard +# +# 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 +# documentation, and that the name of Keith Packard not be used in +# advertising or publicity pertaining to distribution of the software without +# specific, written prior permission. Keith Packard makes no +# representations about the suitability of this software for any purpose. It +# is provided "as is" without express or implied warranty. +# +# KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO +# EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR +# 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. + +DOC2MAN = docbook2man + +FC_CAT_SRC=${top_srcdir}/fc-cat + +SGML = ${FC_CAT_SRC}/fc-cat.sgml + +INCLUDES=-I${top_srcdir} $(FREETYPE_CFLAGS) + +bin_PROGRAMS=fc-cat + +EXTRA_DIST=$(SGML) + +fc_cat_LDADD = ${top_builddir}/src/libfontconfig.la + +if USEDOCBOOK + +man_MANS=fc-cat.1 + +${man_MANS}: ${SGML} + $(RM) $@ + $(DOC2MAN) ${SGML} + $(RM) manpage.refs manpage.links + +all-local: $(man_MANS) + +clean-local: + $(RM) $(man_MANS) + +else +all-local: +clean-local: +endif |