* 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 0988d03251f1abcc6a95c820368e2f803cdc443d..1794f84e8d149a6b5c968774932c16ce5ee8f9c9 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 02a2e0446256b6ba98c482f9565e507b0568e7ca..c47bc6880df5cda03163dea934fcac6c25f8e811 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 f0fc780250952567ae8f309b32c9a2c70e72e4db..dd90e555c431494630c1eefe493b14d8f3bd41b7 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)