Mercurial > hg > octave-nkf > gnulib-hg
changeset 3962:be4a50a68d30
* 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.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Fri, 01 Nov 2002 12:18:03 +0000 |
parents | b34619ffab3d |
children | ed9b8c0441b5 |
files | ChangeLog Makefile.in configure.in |
diffstat | 3 files changed, 10 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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.
--- a/Makefile.in +++ b/Makefile.in @@ -43,7 +43,7 @@ SHELL = /bin/sh -subdirs = doc test +subdirs = m4 lib default all:: regex.o .PHONY: default all
--- 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_PREFIX(gcc) -AC_OUTPUT(Makefile doc/Makefile test/Makefile) +AC_OUTPUT(Makefile m4/Makefile lib/Makefile)