diff options
author | Werner Koch <wk@gnupg.org> | 1999-07-07 13:28:26 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1999-07-07 13:28:26 +0200 |
commit | bd7298cf0dbeacbd415acdf814acace9aabb8455 (patch) | |
tree | ae235766ee42b77ba5ca19dfb1bf99e678154e3d /cipher | |
parent | See ChangeLog: Fri Jul 2 11:45:54 CEST 1999 Werner Koch (diff) | |
download | gnupg2-bd7298cf0dbeacbd415acdf814acace9aabb8455.tar.xz gnupg2-bd7298cf0dbeacbd415acdf814acace9aabb8455.zip |
See ChangeLog: Wed Jul 7 13:23:40 CEST 1999 Werner Koch
Diffstat (limited to 'cipher')
-rw-r--r-- | cipher/ChangeLog | 5 | ||||
-rw-r--r-- | cipher/Makefile.am | 9 |
2 files changed, 10 insertions, 4 deletions
diff --git a/cipher/ChangeLog b/cipher/ChangeLog index 2ce644a43..91a27704a 100644 --- a/cipher/ChangeLog +++ b/cipher/ChangeLog @@ -1,3 +1,8 @@ +Wed Jul 7 13:08:40 CEST 1999 Werner Koch <wk@isil.d.shuttle.de> + + + * Makefile.am: Support for libtool. + Fri Jul 2 11:45:54 CEST 1999 Werner Koch <wk@isil.d.shuttle.de> diff --git a/cipher/Makefile.am b/cipher/Makefile.am index af6d8024b..164a99b0e 100644 --- a/cipher/Makefile.am +++ b/cipher/Makefile.am @@ -3,7 +3,7 @@ INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl -noinst_LIBRARIES = libcipher.a +noinst_LTLIBRARIES = libcipher.la # The configure script greps the module names from the following lines. # You must also add all these names to EXTRA_PROGRAMS some lines below @@ -33,7 +33,8 @@ endif DYNLINK_MOD_CFLAGS = -DIS_MODULE @DYNLINK_MOD_CFLAGS@ -libcipher_a_SOURCES = cipher.c \ +libcipher_la_LDFLAGS = +libcipher_la_SOURCES = cipher.c \ pubkey.c \ md.c \ dynload.c \ @@ -62,8 +63,8 @@ libcipher_a_SOURCES = cipher.c \ BUILT_SOURCES = construct.c -libcipher_a_DEPENDENCIES = @STATIC_CIPHER_OBJS@ -libcipher_a_LIBADD = @STATIC_CIPHER_OBJS@ +libcipher_la_DEPENDENCIES = @STATIC_CIPHER_OBJS@ +libcipher_la_LIBADD = @STATIC_CIPHER_OBJS@ # If I remember it correct, automake 1.4 has a feature to set |