12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- info_TEXINFOS = tar.texi
- tar_TEXINFOS = \
- fdl.texi\
- freemanuals.texi\
- genfile.texi\
- getdate.texi\
- header.texi\
- rendition.texi\
- snapshot.texi\
- value.texi
- EXTRA_DIST = convtexi.pl gendocs_template
- DISTCLEANFILES=*.info*
- RENDITION = DISTRIB
- MAKEINFOFLAGS=-D$(RENDITION)
- header.texi: $(top_srcdir)/src/tar.h
- sed -n '/Archive Format/,/End of Format/p' $(top_srcdir)/src/tar.h \
- | expand | sed 's/\([{}]\)/@\1/g' >$@
- clean-local:
- rm -rf manual
- GENDOCS=gendocs.sh
- TEXI2DVI=texi2dvi -t '@set $(RENDITION)' -E
- manual:
- TEXINPUTS=$(srcdir):$(top_srcdir)/config:$(TEXINPUTS) \
- MAKEINFO="$(MAKEINFO) $(MAKEINFOFLAGS)" \
- TEXI2DVI="$(TEXI2DVI) -t @finalout" \
- $(GENDOCS) tar 'GNU tar manual'
|