File: Makefile.am

package info (click to toggle)
nco 4.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 24,252 kB
  • ctags: 6,921
  • sloc: ansic: 48,409; cpp: 22,351; xml: 16,783; sh: 12,408; perl: 5,453; makefile: 1,940; lex: 1,136; yacc: 605; python: 116; csh: 40
file content (37 lines) | stat: -rw-r--r-- 1,179 bytes parent folder | download
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=$@ $<