This is the mail archive of the automake@gnu.org mailing list for the automake project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: automake for plugins (no PROGRAMS, no LIBRARIES)


On Fri, Apr 02, 2004 at 12:04:18PM +0200,
 Andreas Schwab <schwab@suse.de> wrote 
 a message of 18 lines which said:

> Use libtool with -module.

That's what I eventually did. The actual configuration in Makefile.am
is:

pkglib_LTLIBRARIES = whois.la
whois_la_SOURCES = whois.c
whois_la_LDFLAGS = -module

And the main program:

bin_PROGRAMS = echoping
man_MANS = echoping.1
echoping_SOURCES = echoping.c error.c readline.c writen.c util.c http.c icp.c HTParse.c echoping.h icp.h HTParse.h smtp.c
echoping_LDADD = 
echoping_LDFLAGS = -export-dynamic

Thanks.



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]