Frederico Faria <[EMAIL PROTECTED]> writes: > I try to use the configure script and automake on my project. I have a > source directory: > > server > server/src > > I'd like to generate the Makefiles in server and server/src. > > But i've got a problem; configure creates an empty server/src/Makefile. > Below is the stdout of configure command. > See the message "sed: can't read ../src/Makefile.in: No such file or > directory"
server/src/Makefile.in is generated by automake from server/src/Makefile.am. You must add the line: SUBDIRS = src to your top-level Makefile.am (I assume server/Makefile.am). panagiotis