nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

Makefile.am (633B)


      1 SUBDIRS =
      2 BUILT_SOURCES =
      3 
      4 dist_html_DATA = faq.html
      5 
      6 dist_man_MANS = nano.1 rnano.1
      7 html_pages = nano.1.html rnano.1.html
      8 
      9 if USE_NANORC
     10 dist_man_MANS += nanorc.5
     11 html_pages += nanorc.5.html
     12 endif
     13 
     14 nano.1.html: nano.1
     15 	groff -t -mandoc -Thtml < $? > $@
     16 nanorc.5.html: nanorc.5
     17 	groff -t -mandoc -Thtml < $? > $@
     18 rnano.1.html: rnano.1
     19 	groff -t -mandoc -Thtml < $? > $@
     20 
     21 if GROFF_HTML
     22 BUILT_SOURCES += $(html_pages)
     23 dist_html_DATA += $(html_pages)
     24 endif
     25 
     26 info_TEXINFOS = nano.texi
     27 
     28 BUILT_SOURCES += nano.html
     29 dist_html_DATA += nano.html
     30 
     31 AM_MAKEINFOHTMLFLAGS = --no-split -c HEADERS=0
     32 
     33 EXTRA_DIST = $(BUILT_SOURCES) $(info_TEXINFOS)