1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
#
# $Header: /cvsroot/xbae/Xbae/doc/Makefile.am,v 1.21 2004/08/19 19:57:39 dannybackx Exp $
#
MAINTAINERCLEANFILES=Makefile.in
CLEANFILES= $(XBAE_HTML_MANPAGES)
EXTRA_DIST = $(DATA)
SUBDIRS= images
#
# Install some information files
#
# Lets put the informational stuff in a sub directory to avoid
# polluting /usr/local for default installs.
#
docdir= $(datadir)/Xbae
doc_DATA= \
contents.html coverplus.html difffonts.html \
index.html main.html morelines.html \
psdriver.html scrolling.html \
sites.html spancells.html title.html users.html \
FAQ.html $(XBAE_HTML_MANPAGES)
#
# Only do this when in maintainer mode.
#
if MAINTAINER_MODE
#
# The distribution contains manual pages in src/*.3.in,
# they're processed into src/*.3 by configure,
# now we can process them into HTML here.
#
# Please note that the man2html that we require is *not* the version
# in other distributions. A -f option was added for filter mode.
# The LessTif distribution has the modified sources.
# (http://lesstif.sourceforge.net)
#
XBAE_HTML_MANPAGES= XbaeMatrix.html XbaeCaption.html XbaeInput.html
# We don't have those sources, i.e. if our man2html is missing
# just try groff instead
if LT_BUILD_MAN2HTML
XbaeMatrix.ps: $(top_builddir)/src/XbaeMatrix.3
groff -t -man -Tps <$(top_builddir)/src/$? >$@
XbaeInput.ps: $(top_builddir)/src/XbaeInput.3
groff -t -man -Tps <$(top_builddir)/src/$? >$@
XbaeCaption.ps: $(top_builddir)/src/XbaeCaption.3
groff -t -man -Tps <$(top_builddir)/src/$? >$@
XbaeMatrix.html: $(top_builddir)/src/XbaeMatrix.3
groff -P -Dimages -P -Igrohtml-XbaeMatrix -t -man -Thtml <$(top_builddir)/src/$? >$@
XbaeInput.html: $(top_builddir)/src/XbaeInput.3
groff -P -Dimages -P -Igrohtml-XbaeInput -t -man -Thtml <$(top_builddir)/src/$? >$@
XbaeCaption.html: $(top_builddir)/src/XbaeCaption.3
groff -P -Dimages -P -Igrohtml-XbaeCaption -t -man -Thtml <$(top_builddir)/src/$? >$@
else
XbaeMatrix.html: $(top_builddir)/src/XbaeMatrix.3
man2html -f -w <$(top_builddir)/src/$? >$@
XbaeInput.html: $(top_builddir)/src/XbaeInput.3
man2html -f -w <$(top_builddir)/src/$? >$@
XbaeCaption.html: $(top_builddir)/src/XbaeCaption.3
man2html -f -w <$(top_builddir)/src/$? >$@
endif
endif
|