filename changes
authorJohn Kohl <jtkohl@mit.edu>
Thu, 17 May 1990 15:00:18 +0000 (15:00 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Thu, 17 May 1990 15:00:18 +0000 (15:00 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@876 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/crypto/des/Imakefile

index 1b9c85f61ae28f160bf040d51429f878d0b1c21e..17f0edb8f734a347270af95c210abb97c847391a 100644 (file)
@@ -2,15 +2,15 @@ NormalLibraryObjectRule()
 
 OBJS=  cksum.o         \
        des.o           \
-       des_cbc_cksum.o \
-       des_cs_ent.o    \
-       des_enc_dec.o   \
-       des_fin_key.o   \
-       des_fnr_key.o   \
-       des_inr_key.o   \
-       des_prc_key.o   \
-       des_ran_key.o   \
-       des_st2_key.o   \
+       cbc_cksum.o     \
+       cs_entry.o      \
+       enc_dec.o       \
+       finish_key.o    \
+       fin_rndkey.o    \
+       init_rkey.o     \
+       process_ky.o    \
+       random_key.o    \
+       string2key.o    \
        key_parity.o    \
        key_sched.o     \
        new_rnd_key.o   \
@@ -18,15 +18,15 @@ OBJS=       cksum.o         \
 
 SRCS=  cksum.c         \
        des.c           \
-       des_cs_ent.c    \
-       des_cbc_cksum.c \
-       des_enc_dec.c   \
-       des_fin_key.c   \
-       des_fnr_key.c   \
-       des_inr_key.c   \
-       des_prc_key.c   \
-       des_ran_key.c   \
-       des_st2_key.c   \
+       cs_entry.c      \
+       cbc_cksum.c     \
+       enc_dec.c       \
+       finish_key.c    \
+       fin_rndkey.c    \
+       init_rkey.c     \
+       process_ky.c    \
+       random_key.c    \
+       string2key.c    \
        key_parity.c    \
        key_sched.c     \
        new_rnd_key.c   \
@@ -38,7 +38,10 @@ NormalLibraryTarget(des,$(OBJS))
 
 $(SRCS): fp.c ip.c key_perm.h odd.h p.c p_table.h s_table.h
 
-EXTRA_LIBRARIES = $(TOP)/error_tables/*.o
+clean::
+       $(RM) fp.c ip.c key_perm.h odd.h p.c p_table.h s_table.h
+
+EXTRA_LIBRARIES = $(TOP)/error_tables/krb5_err.o $(TOP)/error_tables/isode_err.o -lcom_err
 
 NormalProgramTarget(verify, $(VERIFYOBJ), libdes.a, libdes.a, -lcom_err)
 
@@ -54,10 +57,10 @@ NormalProgramTarget(make_ip, make_ip.o, misc.o, misc.o, )
 ip.c: make_ip
        ./make_ip ip.c
 
-NormalProgramTarget(make_key_perm, make_key_perm.o, misc.o, misc.o, )
+NormalProgramTarget(make_kp,make_kp.o, misc.o, misc.o, )
 
-key_perm.h: make_key_perm
-       ./make_key_perm key_perm.h
+key_perm.h: make_kp
+       ./make_kp key_perm.h
 
 NormalProgramTarget(make_odd, make_odd.o, misc.o, misc.o, )
 
@@ -69,16 +72,16 @@ NormalProgramTarget(make_p, make_p.o, misc.o, misc.o, )
 p.c: make_p
        ./make_p p.c
 
-NormalProgramTarget(make_p_table, make_p_table.o, misc.o, misc.o, )
+NormalProgramTarget(make_pt, make_pt.o, misc.o, misc.o, )
 
-p_table.h: make_p_table
-       ./make_p_table p_table.h
+p_table.h: make_pt
+       ./make_pt p_table.h
 
 NormalProgramTarget(make_s, make_s.o, misc.o, misc.o, )
 
-NormalProgramTarget(make_s_table, make_s_table.o, misc.o, misc.o, )
+NormalProgramTarget(make_st, make_st.o, misc.o, misc.o, )
 
-s_table.h: make_s_table
-       ./make_s_table s_table.h
+s_table.h: make_st
+       ./make_st s_table.h
 
 NormalLintTarget($(SRCS))