From 48d14683fdb88bdf20e20f96ed87bc5f958d96c8 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Fri, 1 Nov 2002 12:18:03 +0000 Subject: [PATCH] * 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. --- ChangeLog | 7 +++++++ Makefile.in | 2 +- configure.in | 3 ++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0988d03251..1794f84e8d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2002-11-01 Bruno Haible + + * 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 * regex.c (PATFETCH): Remove the translating fetch. diff --git a/Makefile.in b/Makefile.in index 02a2e04462..c47bc6880d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -43,7 +43,7 @@ DEFS = @DEFS@ SHELL = /bin/sh -subdirs = doc test +subdirs = m4 lib default all:: regex.o .PHONY: default all diff --git a/configure.in b/configure.in index f0fc780250..dd90e555c4 100644 --- a/configure.in +++ b/configure.in @@ -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) -- 2.30.2