Hey, in a Makefile.am that is in the "$(top_builddir)/path1/path3" directory, the library uses a file that is in the "$(top_builddir)/path1/path2" directory. Is it better to use absolute path:
mylib_SOURCES = $(top_builddir)/path1/path2/file.c or relative path mylib_SOURCES = ../path2/file.c ? thank you Vincent Torri