John, > Bob, server/Makefile's VPATH only contains the expansion of > @top_srcdir@/server, which in this case is ../../server. This means > that make won't be able to find any sources listed that exist in > directories other than ../../server. So I think I HAVE to use > $(top_srcdir)/common/mySleep.c, don't I, as it's in a different source > directory?
You can use: ../common/mySleep.c in your foo_SOURCES list. H