On Tuesday 13 October 2009 21:13:29 Dr. David Kirkby wrote: > We have a makefile in a project, which works well. In the short term at > least, we do not want to use autoconf to create a makefile, but instead > use our own. > > However, it would be nice to have a configure script at the top, which > at least supports --help and a few other things like that. But we do not > want it to create a makefile in the usual way.
autoconf isnt tied to any specific file (like "Makefile"). if you dont want
autoconf to create a file, dont list it as an output.
$ cat configure.ac
AC_INIT(foo)
$ autoconf
$ ./configure --help
....
-mike
signature.asc
Description: This is a digitally signed message part.
_______________________________________________ Autoconf mailing list [email protected] http://lists.gnu.org/mailman/listinfo/autoconf
