automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

changing file names in Makefile.am


From: Adams Samuel D Contr AFRL/HEDR
Subject: changing file names in Makefile.am
Date: Wed, 5 Oct 2005 14:17:45 -0500

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.  

Script started on Wed Oct  5 12:34:31 2005
ddress@hidden ~/c/raw2id $ ./reconf 

/usr/share/aclocal/libglade.m4:7: warning: underquoted definition of
AM_PATH_LIBGLADE

  run info '(automake)Extending aclocal'

  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal

/usr/share/aclocal/glib.m4:8: warning: underquoted definition of
AM_PATH_GLIB

/usr/share/aclocal/gdk-pixbuf.m4:12: warning: underquoted definition of
AM_PATH_GDK_PIXBUF

/usr/share/aclocal/ao.m4:9: warning: underquoted definition of XIPH_PATH_AO

ddress@hidden ~/c/raw2id $ make

 cd . && /bin/sh ./config.status Makefile 

config.status: creating Makefile

Making all in m4

make[1]: Entering directory `/home/sam/c/raw2id/m4'

 cd .. && /bin/sh ./config.status m4/Makefile 

config.status: creating m4/Makefile

make[1]: Leaving directory `/home/sam/c/raw2id/m4'

make[1]: Entering directory `/home/sam/c/raw2id/m4'

make[1]: Nothing to be done for `all'.

make[1]: Leaving directory `/home/sam/c/raw2id/m4'

Making all in doc

make[1]: Entering directory `/home/sam/c/raw2id/doc'

 cd .. && /bin/sh ./config.status doc/Makefile 

config.status: creating doc/Makefile

make[1]: Leaving directory `/home/sam/c/raw2id/doc'

make[1]: Entering directory `/home/sam/c/raw2id/doc'

make[1]: Nothing to be done for `all'.

make[1]: Leaving directory `/home/sam/c/raw2id/doc'

Making all in src/fdtd_io

make[1]: Entering directory `/home/sam/c/raw2id/src/fdtd_io'

 cd ../.. && /bin/sh ./config.status src/fdtd_io/Makefile depfiles

config.status: creating src/fdtd_io/Makefile

config.status: executing depfiles commands

make[1]: Leaving directory `/home/sam/c/raw2id/src/fdtd_io'

make[1]: Entering directory `/home/sam/c/raw2id/src/fdtd_io'

make[1]: Nothing to be done for `all'.

make[1]: Leaving directory `/home/sam/c/raw2id/src/fdtd_io'

Making all in src

make[1]: Entering directory `/home/sam/c/raw2id/src'

 cd .. && /bin/sh ./config.status src/Makefile depfiles

config.status: creating src/Makefile

config.status: executing depfiles commands

make[1]: Leaving directory `/home/sam/c/raw2id/src'

make[1]: Entering directory `/home/sam/c/raw2id/src'

make[1]: *** No rule to make target `calc.c++', needed by `calc.o'.  Stop.

make[1]: Leaving directory `/home/sam/c/raw2id/src'

make: *** [all-recursive] Error 1

ddress@hidden ~/c/raw2id $ cat src/Ma
kefile.am 

bin_PROGRAMS = raw2id

include_HEADERS = raw2id.h



raw2id_SOURCES = calc.C calc.h raw2id.c raw2id.h fdtd_io/fdtd_io.h

raw2id_INCLUDES = -I$(top_srcdir)/src/fdtd_io -I/usr/include

raw2id_LDADD = -lfdtd_io -lz

raw2id_LDFLAGS = -L$(top_srcdir)/src/fdtd_io



ddress@hidden ~/c/raw2id $ exit\

> 


Script done on Wed Oct  5 12:35:22 2005

Sam Adams
General Dynamics - Network Systems




reply via email to

[Prev in Thread] Current Thread [Next in Thread]