autoconf
[Top][All Lists]
Advanced

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

program errors


From: G.L. Grobe
Subject: program errors
Date: Fri, 20 Sep 2002 02:01:39 -0500

I've partially got my projects building but have a few questions. I get the following error when building a program that relies on a static lib.
 
...
Making all in consoles
make[1]: Entering directory `/u/projects/LANE/Src/consoles'
make[1]: *** No rule to make target `all'.  Stop.
make[1]: Leaving directory `/u/projects/LANE/Src/consoles'
make: *** [all-recursive] Error 1
... And here's the Makefile.am's in the subdirs ...
 
--- ~/consoles/Makefile.am ---
SUBDIRS = annwish
 
--- ~/consoles/annwish/Makefile.am ---
bin_PROGRAMS = annwish
INCLUDES = -I$(top_srcdir)/includes
annwish_SOURCES = annwish.cc
annwish_LDADD = $(top_srcdir)/libs/tcl/libanntcl.a
clean:
    rm *.o
 
--- error for clean
$ make clean
...
Making clean in utils
make[1]: Entering directory `/u/projects/LANE/Src/utils'
make[1]: *** No rule to make target `clean'.  Stop.
make[1]: Leaving directory `/u/projects/LANE/Src/utils'
make: *** [clean-recursive] Error 1
 
Any help much appreciated.

reply via email to

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