]> git.wh0rd.org Git - nano.git/commitdiff
Create html manpages when building nano.
authorJordi Mallach <jordi@gnu.org>
Sun, 19 Oct 2003 23:30:48 +0000 (23:30 +0000)
committerJordi Mallach <jordi@gnu.org>
Sun, 19 Oct 2003 23:30:48 +0000 (23:30 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1570 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
doc/man/.cvsignore
doc/man/Makefile.am
doc/man/fr/.cvsignore
doc/man/fr/Makefile.am

index 6c5f9a8b499c0c531d790740a191b4234c4f3e38..df1cd0116ffebd2430b1d6814bf7cf73a8b8f4af 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -31,7 +31,8 @@ CVS code -
          disabled if justification is disabled. (DLR)
        - Make sure the "historylog" option isn't included at all if
          NANO_SMALL is defined. (DLR)
-       - Source reorganization: move code to src/, docs to doc/. (Jordi)
+       - Source reorganization: move code to src/, docs to doc/.
+         (Jordi)
        - Translation updates (see po/ChangeLog for details).
        - Since SAMELINEWRAP is only used in nano.c, make it a static
          variable in nano.c instead of a flag, and surround all
@@ -60,6 +61,10 @@ CVS code -
          enabled, remove duplicate wrap_at prototype, and define
          DISABLE_MOUSE if NCURSES_MOUSE_VERSION isn't defined in nano.h
          instead of all over the code. (DLR)
+       - Autogenerate the html versions of the manpages in the
+         Makefile.am's in doc/man/, make sure that they're properly
+         installed via "make dist", and make sure that "make distcheck"
+         works too. (Jordi, DLR and Jeff Bailey)
 - files.c:
   read_file()
        - After we've read in a file and possibly converted it from
index 282522db0342d8750454b3dc162493b5fc709cc8..fc52fc23d099866451f915e44e4fb08c10f5981f 100644 (file)
@@ -1,2 +1,4 @@
 Makefile
 Makefile.in
+nanorc.5.html
+nano.1.html
index 60f573076515ff01cadc49b1c19f9b6e34dd5cce..666ccf00324c70c37aaf8a714dd27a784eb5483f 100644 (file)
@@ -2,4 +2,9 @@ SUBDIRS = fr
 
 man_MANS = nano.1 nanorc.5
 
-EXTRA_DIST = nano.1.html nanorc.5.html $(man_MANS)
+BUILT_SOURCES = nano.1.html nanorc.5.html
+
+nano.1.html: nano.1
+       cat $< | groff -t -mandoc -Thtml > $@
+nanorc.5.html: nanorc.5
+       cat $< | groff -t -mandoc -Thtml > $@
index 282522db0342d8750454b3dc162493b5fc709cc8..fc52fc23d099866451f915e44e4fb08c10f5981f 100644 (file)
@@ -1,2 +1,4 @@
 Makefile
 Makefile.in
+nanorc.5.html
+nano.1.html
index 12267764e2827362a081a0b787040c35854bd012..802eea6865533e91ee2072f2cdf6548f9e37860e 100644 (file)
@@ -1,5 +1,8 @@
-
-mandir = @mandir@/fr
 man_MANS = nano.1 nanorc.5
 
-EXTRA_DIST = $(man_MANS)
+BUILT_SOURCES = nano.1.html nanorc.5.html
+
+nano.1.html: nano.1
+       cat $< | groff -t -mandoc -Thtml > $@
+nanorc.5.html: nanorc.5
+       cat $< | groff -t -mandoc -Thtml > $@