From 2e11d66f4b0427b7a841c9c10f57adcc6253c755 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Sun, 19 Jan 1997 05:19:11 +0000 Subject: [PATCH] Rename foo libfoo.a git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1171 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/asn1/Makefile.am | 6 ++++-- lib/des/Makefile.am | 4 ++-- lib/krb5/Makefile.am | 4 ++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/asn1/Makefile.am b/lib/asn1/Makefile.am index 36fa72e30..f7592e9e9 100644 --- a/lib/asn1/Makefile.am +++ b/lib/asn1/Makefile.am @@ -2,15 +2,17 @@ AUTOMAKE_OPTIONS = no-dependencies -lib_LIBRARIES = asn1 +lib_LIBRARIES = libasn1.a -asn1_SOURCES = asn1.c der_get.c der_put.c +libasn1_a_SOURCES = asn1.c der_get.c der_put.c noinst_PROGRAMS = asn1_compile asn1_compile_SOURCES = parse.y lex.l main.c hash.c symbol.c gen.c +asn1_compile_LDADD = @LEXLIB@ + parse.c: parse.y $(YACC) -d $(YFLAGS) $(srcdir)/parse.y mv y.tab.c parse.c diff --git a/lib/des/Makefile.am b/lib/des/Makefile.am index 549b2d3ce..b973f22a3 100644 --- a/lib/des/Makefile.am +++ b/lib/des/Makefile.am @@ -4,10 +4,10 @@ AUTOMAKE_OPTIONS = no-dependencies INCLUDES = -I$(top_builddir)/include -lib_LIBRARIES = des +lib_LIBRARIES = libdes.a include_HEADERS = des.h -des_SOURCES =cbc3_enc.c cbc_enc.c cfb64ede.c cfb64enc.c cfb_enc.c \ +libdes_a_SOURCES =cbc3_enc.c cbc_enc.c cfb64ede.c cfb64enc.c cfb_enc.c \ ecb3_enc.c ede_enc.c fcrypt.c key_par.c ncbc_enc.c ofb64ede.c \ ofb64enc.c ofb_enc.c pcbc_enc.c qud_cksm.c read_pwd.c rnd_keys.c \ str2key.c cbc_cksm.c ecb_enc.c set_key.c md4.c diff --git a/lib/krb5/Makefile.am b/lib/krb5/Makefile.am index c85c8b8cd..38df2df3a 100644 --- a/lib/krb5/Makefile.am +++ b/lib/krb5/Makefile.am @@ -6,9 +6,9 @@ SUBDIRS = error INCLUDES = -I$(top_builddir)/include -lib_LIBRARIES = krb5 +lib_LIBRARIES = libkrb5.a -krb5_SOURCES = cache.c config_file.y constants.c context.c data.c \ +libkrb5_a_SOURCES = cache.c config_file.y constants.c context.c data.c \ get_addrs.c get_cred.c get_in_tkt.c get_in_tkt_pw.c get_port.c \ krbhst.c misc.c principal.c principal_p.c send_to_kdc.c str2key.c \ crc.c build_ap_req.c build_auth.c mk_req.c get_host_realm.c \