>>>>> "Rod" == Keenan, Rod <[EMAIL PROTECTED]> writes:
Rod> I'm using automake 1.4 and libtool 1.3.
1.4 handled BUILT_SOURCES in a fairly dumb way.
I would recommend not using BUILT_SOURCES with that automake.
Rod> BUILT_SOURCES = db_dequeue_generic_tcp_msg.c db_enqueue_generic_tcp_msg.c
make thinks these are prerequisites to building Makefile.
Eww.
I recommend trying this instead:
- Remove BUILT_SOURCES
Rod> libGenericTCP_la_SOURCES =
- Change this to read:
libGenericTCP_la_SOURCES = db_enqueue_generic_tcp_msg.pc \
db_enqueue_generic_tcp_msg.pc
Rod> libGenericTCP_la_LIBADD = db_dequeue_generic_tcp_msg.o
- Remove this
I imagine that will work.
Tom