* configure.in: Add AC_CONFIG_AUX_DIR call.
authorBruno Haible <bruno@clisp.org>
Fri, 1 Nov 2002 12:18:03 +0000 (12:18 +0000)
committerBruno Haible <bruno@clisp.org>
Fri, 1 Nov 2002 12:18:03 +0000 (12:18 +0000)
        (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
        test/Makefile.
        * Makefile.in (subdirs): Add m4, lib. Remove doc, test.

ChangeLog
Makefile.in
configure.in

index 0988d03..1794f84 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2002-11-01  Bruno Haible  <bruno@clisp.org>
+
+       * configure.in: Add AC_CONFIG_AUX_DIR call.
+       (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
+       test/Makefile.
+       * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
+
 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
 
        * regex.c (PATFETCH): Remove the translating fetch.
index 02a2e04..c47bc68 100644 (file)
@@ -43,7 +43,7 @@ DEFS = @DEFS@
 
 SHELL = /bin/sh
 
-subdirs = doc test
+subdirs = m4 lib
 
 default all:: regex.o
 .PHONY: default all
index f0fc780..dd90e55 100644 (file)
@@ -1,5 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 AC_INIT(regex.c)
+AC_CONFIG_AUX_DIR(config)
 
 AC_PROG_CC
 AC_PROG_INSTALL
@@ -20,4 +21,4 @@ AC_CONST
 
 AC_PREFIX(gcc)
 
-AC_OUTPUT(Makefile doc/Makefile test/Makefile)
+AC_OUTPUT(Makefile m4/Makefile lib/Makefile)