Thanks for the help. I ran "make maintainer-clean" and that seemed to clear up the problem. I am still getting compilation errors, but I think they are due to bad code and not the auto tools. ;) So, what was I not understanding about the auto tools that was causing me this problem?
This is the information that you previously requested, but I guess it doesn't matter. Script started on Thu Oct 6 07:51:44 2005 [EMAIL PROTECTED] ~/c/raw2id $ cat reconf #!/bin/sh rm -f config.cache aclocal -I m4 autoconf #autoheader automake -a exit [EMAIL PROTECTED] ~/c/raw2id $ automake --version automake (GNU automake) 1.9.5 Written by Tom Tromey <[EMAIL PROTECTED]>. Copyright 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. [EMAIL PROTECTED] ~/c/raw2id $ fgrep calc.c++ src/Makefile [EMAIL PROTECTED] ~/c/raw2id $ exit Script done on Thu Oct 6 08:25:52 2005 Sam Adams General Dynamics - Network Systems -----Original Message----- From: Ralf Wildenhues [mailto:[EMAIL PROTECTED] Sent: Thursday, October 06, 2005 5:48 AM To: Adams Samuel D Contr AFRL/HEDR; [email protected] Subject: Re: changing file names in Makefile.am Sorry for the self-reply. * Ralf Wildenhues wrote on Thu, Oct 06, 2005 at 11:02:38AM CEST: > * Adams Samuel D Contr AFRL/HEDR wrote on Wed, Oct 05, 2005 at 09:17:45PM CEST: > > I started this new project, and I realized that I needed to work with > > complex numbers after I started. As you may know, C does not have a complex > > number library, but C++ does. So, I changed the calculation parts into C++. > > After I renamed the files, I was getting the following error that you see > > below. I modified the Makefile.am in the src/ directory, and also added > > "AC_PROG_CXX" to my configure.ac file. Anyway, let me know if you have any > > ideas. > > Looks like a weird "something did not get updated" error to me. And it's quite clear what this is: the dependency tracking information below .deps. You can do a make maintainer-clean or even a make distclean to remove this information. After doing this once, everything should work as desired. Cheers, Ralf
