mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-22 04:41:21 +03:00
c0a52372f1
Especially: get rid of the "Up: (dir)" link that points nowhere. Also, add a horizontal line before the final Table of Contents.
34 lines
633 B
Makefile
34 lines
633 B
Makefile
SUBDIRS =
|
|
BUILT_SOURCES =
|
|
|
|
dist_html_DATA = faq.html
|
|
|
|
dist_man_MANS = nano.1 rnano.1
|
|
html_pages = nano.1.html rnano.1.html
|
|
|
|
if USE_NANORC
|
|
dist_man_MANS += nanorc.5
|
|
html_pages += nanorc.5.html
|
|
endif
|
|
|
|
nano.1.html: nano.1
|
|
groff -t -mandoc -Thtml < $? > $@
|
|
nanorc.5.html: nanorc.5
|
|
groff -t -mandoc -Thtml < $? > $@
|
|
rnano.1.html: rnano.1
|
|
groff -t -mandoc -Thtml < $? > $@
|
|
|
|
if GROFF_HTML
|
|
BUILT_SOURCES += $(html_pages)
|
|
dist_html_DATA += $(html_pages)
|
|
endif
|
|
|
|
info_TEXINFOS = nano.texi
|
|
|
|
BUILT_SOURCES += nano.html
|
|
dist_html_DATA += nano.html
|
|
|
|
AM_MAKEINFOHTMLFLAGS = --no-split -c HEADERS=0
|
|
|
|
EXTRA_DIST = $(BUILT_SOURCES) $(info_TEXINFOS)
|