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
