Re: confused about libtool and LIBADD

2010-09-23 Thread Ralf Wildenhues
Hello Martin, * Martin Kalbfuss wrote on Thu, Sep 23, 2010 at 08:08:36PM CEST: > If I do mylib_la_LIBADD = libSDL.la > > It says, > > make[1]: Entering directory > `/home/martin/Desktop/sk/schwarzerkaffee/src' > make[1]: *** No rule to make target `libSDL.la', needed by `libsk.la'. The idea is

confused about libtool and LIBADD

2010-09-23 Thread Martin Kalbfuss
Hi, I try to use libtool for my project, It runs fine as long as libSDL is added as dependency to the program directly. But I thought, I could add a library as dependency of a library. But it isn't working. my wrapping library is libsk.la which depends on libSDL.la which is in my path. If I do my