diff options
author | Roland McGrath <roland@gnu.org> | 1996-05-01 02:19:03 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-05-01 02:19:03 +0000 |
commit | d0f2f57f9cc28dddf10cc25243d77c05167ad7aa (patch) | |
tree | d2ecec095ec172ad7f55320ec2a49b07e5b434fc | |
parent | 6cab75a2e5fffd4ee635a76d1488093c2a58d001 (diff) |
(makefiles): Add Makeconf:build.mkcf.in.
-rw-r--r-- | configure.in | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/configure.in b/configure.in index 07d75219..01c41005 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_REVISION([$Id: configure.in,v 1.4 1996/05/01 02:14:08 roland Exp $]) +AC_REVISION([$Id: configure.in,v 1.5 1996/05/01 02:19:03 roland Exp $]) AC_PREREQ(2.4) dnl Minimum Autoconf version required. AC_INIT(hurd/hurd_types.h) dnl A distinctive file to look for in srcdir. @@ -38,15 +38,12 @@ else # We are configuring in a separate build tree. # Create a Makefile in the top-level build directory and # one for each subdirectory Makefile in the source. - makefiles="`cd $srcdir; for file in Makefile */Makefile; do \ + makefiles="Makeconf:build.mkcf.in \ + `cd $srcdir; for file in Makefile */Makefile; do \ echo ${file}:build.mk.in; done`" fi -AC_OUTPUT(config.make ${makefiles}, - [if test `cd $srcdir; /bin/pwd` != `/bin/pwd`; then - rm -f Makeconf - echo 'include $(top_srcdir)/Makeconf' >Makeconf - fi]) +AC_OUTPUT(config.make ${makefiles}) dnl Local Variables: dnl comment-start: "dnl " |