I'm trying to setup an automake project that uses a mix of libtool libraries and exectuables, and I'm having a hard time grokking the automake documentation, esp. as relates to telling the compiler to link against.
So can someone explain the differences between LDADD
and LIBADD
?
Things like:
- when is one used over the other,
- which one takes
-lname_of_library
style values vs. direct filenames, etc.
Whenever I try to read the relevant documentation, it seems like it assumes that I know things that I don't.