Supporting include in Makefiles

2001-06-27 Thread Dean Povey
Firstly, apologies for the cross-posting, particularly giving the fact that I am including code, but this message contains issues relevant to both automake and autoconf. For a while I have been thinking that it would be nice to be able to support "include" in autoconf/automake Makefiles. Thi

Re: automake-cvs

2001-06-27 Thread Ralf Corsepius
Tim Van Holder wrote: > > > AC_INIT_AUTOMAKE(hello,0) > Should be AM_INIT_AUTOMAKE. That is not new to automake-cvs. You're right, my bad. I just scribbled an hello-world example to have something "handable" and skrewed it :) > > /opt/dev/share/automake/am/depend2.am: AMDEP does not appear in

Re: automake-cvs

2001-06-27 Thread Tim Van Holder
> AC_INIT_AUTOMAKE(hello,0) Should be AM_INIT_AUTOMAKE. That is not new to automake-cvs. > AC_PROG_CC > AC_CONFIG_FILES([Makefile]) > AC_OUTPUT > automake: Makefile.am: required file `./NEWS' not found > automake: Makefile.am: required file `./README' not found > automake: Makefile.am: required

automake-cvs

2001-06-27 Thread Ralf Corsepius
Hi, Something very fishy seems to be going on with automake-cvs and autoconf-cvs (both updated yesterday): # ls configure.in hello.c Makefile.am # cat configure.in AC_PREQ(2.50) AC_INIT AC_CONFIG_SRCDIR([hello.c]) AC_INIT_AUTOMAKE(hello,0) AC_PROG_CC AC_CONFIG_FILES([Makefile]) AC_OUTPUT # acl