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
|
info_TEXINFOS = nco.texi
EXTRA_DIST = nco nco.dvi nco.html nco.pdf nco.ps nco.xml VERSION
# csz 20061120 override default MAKEINFOHTML defaults:
# --ifinfo: Treat HTML branches same as info branches
# --output=html: Output to html directory
# Unfortunately, autoconf overrides --output
# AM_MAKEINFOHTMLFLAGS = --ifinfo
# Create single HTML file instead of file-per-node
AM_MAKEINFOHTMLFLAGS = --ifinfo --no-split
## Automake manual section 14:
## If configure built it, 'distclean' should delete it
## If make built it, 'clean' should delete it
#CLEANFILES = nco nco.dvi nco.info* nco.pdf nco.ps nco.txt nco.xml
#
## Additions for NCO; automake may support these later on
## .PHONY tells make to remake the following non-file targets
#.PHONY: html_docs pdf_docs txt_docs xml_docs
#html_docs = nco.html
#.texi.html:
# $(MAKEINFO) --html --ifinfo --no-split --output=$@ $<
## $(MAKEINFO) --html --no-split $<
#pdf_docs = nco.pdf
#.texi.pdf:
# $(TEXI2DVI) --pdf $<
##ps_docs = nco.ps
##.texi.ps:
## dvips -o $@ $<
#txt_docs = nco.txt
#.texi.txt:
# $(MAKEINFO) --no-headers --output=$@ $<
#xml_docs = nco.xml
#.texi.xml:
# $(MAKEINFO) --xml --ifinfo --no-split --output=$@ $<
|