automake/libtool
Clint Adams <[email protected]> Tue, 12 Nov 2002 00:28:39 -0500
| Newsgroups | gmane.mail.eps |
|---|---|
| Message-ID | <[email protected]> |
--5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Attached are a configure.ac and Makefile.am to build libeps. It does not include the rules for rewrite, decode, encode, present in the original Makefile. I hope that you find them useful enough to adopt. --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="configure.ac" AC_INIT([Email Processing System], [1.2], [[email protected]], [eps]) AM_INIT_AUTOMAKE AC_PROG_CC AC_PROG_LIBTOOL AC_CONFIG_FILES(Makefile) AC_OUTPUT --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="Makefile.am" AUTOMAKE_OPTIONS = foreign lib_LTLIBRARIES = libeps.la libeps_la_SOURCES = line.c buffer.c content.c unroll.c eps.c int_stream.c \ rfc2822.c misc.c header.c email.c boundary.c mime.c \ address.c base64.c roll.c int_buffer.c \ line.h buffer.h unroll.h content.h eps.h int_stream.h \ rfc2822.h misc.h interface.h header.h email.h \ boundary.h mime.h address.h base64.h roll.h int_buffer.h libeps_la_LDFLAGS = -version-info 0:0:0 --5vNYLRcllDrimb99--