Hello, I have the following directory layout: src/ bar.c src/common foo.c
The program foobar should be build as follows (dependency): foobar: bar.c common/foo.c That is, in order to build foobar, foo.c has to be compiled first and then linked with bar.o to foobar. Can automake handle such a directory layout? What have to go into the src/Makefile.am and src/common/Makefile.am? /FAU
