blob: 91f01636c668966733831f6771dcac2ce75da2a8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
info_TEXINFOS = nano.texi
MAKEINFO = makeinfo --no-split
BUILT_SOURCES = nano.html
nano.html: nano.texi
makeinfo --no-split --html < $< > $@
EXTRA_DIST = $(info_TEXINFOS) $(BUILT_SOURCES)
|