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