* NightStrike wrote on Mon, Nov 05, 2007 at 06:01:26AM CET: > > lib32dir=$(prefix)/lib32 > lib64dir=$(prefix)/lib64 > > lib32_LIBRARIES = libuuid.a > libuuid_a_SOURCES = lib32/uuid.c > > lib64_LIBRARIES = libuuid.a > libuuid_a_SOURCES = lib64/uuid.c
Not sure why you don't write lib32_LIBRARIES = lib32/libuuid.a lib32_libuuid_a_SOURCES = lib32/uuid.c [...] You may have to give up on your nice pattern rule, I'm not sure about that. But specifying it explicitly a couple of times won't hurt. Cheers, Ralf
