diff options
author | sabetts <sabetts> | 2001-02-26 01:47:38 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2001-02-26 01:47:38 +0000 |
commit | bbe389ca02b1e48ba082150c57c5ceee9ce6b0e1 (patch) | |
tree | d61ca29ea99a213d5987e5bf9873e77ca9f4e998 | |
parent | ca8d87a00c097cf1fa5a1c9c12333831f34e32ab (diff) | |
download | ratpoison-bbe389ca02b1e48ba082150c57c5ceee9ce6b0e1.zip |
* configure.in (AC_OUTPUT): added man/Makefile
* Makefile.am (SUBDIRS): added man dir
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | configure.in | 4 |
3 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2001-02-25 shawn <sabetts@diggin.lamenet.tmp> + + * configure.in (AC_OUTPUT): added man/Makefile + + * Makefile.am (SUBDIRS): added man dir + 2001-02-21 Ryan Yeske <rcyeske@cut.hotdog.tmp> * configure.in: change version to 0.0.6-cvs diff --git a/Makefile.am b/Makefile.am index 8c26a65..3b39e52 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,7 +17,7 @@ ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ## -## $Id: Makefile.am,v 1.5 2001/02/19 21:02:19 rcyeske Exp $ +## $Id: Makefile.am,v 1.6 2001/02/26 01:47:38 sabetts Exp $ PACKAGE = @PACKAGE@ VERSION = @VERSION@ @@ -27,7 +27,7 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 \ config.guess config.h.in config.sub configure \ install-sh missing mkinstalldirs stamp-h.in -SUBDIRS = src doc +SUBDIRS = src doc man docdir = $(datadir)/doc/$(PACKAGE) doc_DATA = AUTHORS COPYING ChangeLog NEWS README diff --git a/configure.in b/configure.in index be75cf0..7e43134 100644 --- a/configure.in +++ b/configure.in @@ -17,7 +17,7 @@ dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA dnl -dnl $Id: configure.in,v 1.13 2001/02/22 04:14:15 rcyeske Exp $ +dnl $Id: configure.in,v 1.14 2001/02/26 01:47:38 sabetts Exp $ AC_INIT(src/main.c) AM_INIT_AUTOMAKE(ratpoison, 0.0.6-cvs) @@ -87,4 +87,4 @@ dnl Checks for typedefs, structures, and compiler characteristics. dnl Checks for library functions. AC_TYPE_SIGNAL -AC_OUTPUT(Makefile doc/Makefile src/Makefile) +AC_OUTPUT(Makefile doc/Makefile src/Makefile man/Makefile) |