mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-26 14:51:36 +03:00
055f0fbbe4
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4701 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
29 lines
489 B
Makefile
29 lines
489 B
Makefile
SUBDIRS =
|
|
BUILT_SOURCES =
|
|
|
|
if USE_NLS
|
|
SUBDIRS += fr
|
|
endif
|
|
|
|
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
|
|
|
|
EXTRA_DIST = $(BUILT_SOURCES)
|