c7c49c48da
only useful when we're building from source, as opposed to building a distribution; also, tweak doc/Makefile.am and doc/man/Makefile.am to remove usage of the += operator again git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3819 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
19 строки
364 B
Makefile
19 строки
364 B
Makefile
if USE_NLS
|
|
SUBDIRS = fr
|
|
else
|
|
SUBDIRS =
|
|
endif
|
|
|
|
man_MANS = nano.1 nanorc.5 rnano.1
|
|
|
|
BUILT_SOURCES = nano.1.html nanorc.5.html rnano.1.html
|
|
|
|
nano.1.html: nano.1
|
|
cat $< | groff -t -mandoc -Thtml > $@
|
|
nanorc.5.html: nanorc.5
|
|
cat $< | groff -t -mandoc -Thtml > $@
|
|
rnano.1.html: rnano.1
|
|
cat $< | groff -t -mandoc -Thtml > $@
|
|
|
|
EXTRA_DIST = $(man_MANS) $(BUILT_SOURCES)
|