1*0Sstevel@tonic-gate# This Imakefile has not been tested for a while but it should still 2*0Sstevel@tonic-gate# work when placed in the correct directory in the kerberos v 4 distribution 3*0Sstevel@tonic-gate 4*0Sstevel@tonic-gateSRCS= cbc_cksm.c cbc_enc.c ecb_enc.c pcbc_enc.c \ 5*0Sstevel@tonic-gate qud_cksm.c rand_key.c read_pwd.c set_key.c str2key.c \ 6*0Sstevel@tonic-gate enc_read.c enc_writ.c fcrypt.c cfb_enc.c \ 7*0Sstevel@tonic-gate ecb3_enc.c ofb_enc.c ofb64enc.c 8*0Sstevel@tonic-gate 9*0Sstevel@tonic-gateOBJS= cbc_cksm.o cbc_enc.o ecb_enc.o pcbc_enc.o \ 10*0Sstevel@tonic-gate qud_cksm.o rand_key.o read_pwd.o set_key.o str2key.o \ 11*0Sstevel@tonic-gate enc_read.o enc_writ.o fcrypt.o cfb_enc.o \ 12*0Sstevel@tonic-gate ecb3_enc.o ofb_enc.o ofb64enc.o 13*0Sstevel@tonic-gate 14*0Sstevel@tonic-gateGENERAL=COPYRIGHT FILES INSTALL Imakefile README VERSION makefile times \ 15*0Sstevel@tonic-gate vms.com KERBEROS 16*0Sstevel@tonic-gateDES= des.c des.man 17*0Sstevel@tonic-gateTESTING=destest.c speed.c rpw.c 18*0Sstevel@tonic-gateLIBDES= des_crypt.man des.h des_locl.h podd.h sk.h spr.h 19*0Sstevel@tonic-gate 20*0Sstevel@tonic-gatePERL= des.pl testdes.pl doIP doPC1 doPC2 PC1 PC2 shifts.pl 21*0Sstevel@tonic-gate 22*0Sstevel@tonic-gateCODE= $(GENERAL) $(DES) $(TESTING) $(SRCS) $(LIBDES) $(PERL) 23*0Sstevel@tonic-gate 24*0Sstevel@tonic-gateSRCDIR=$(SRCTOP)/lib/des 25*0Sstevel@tonic-gate 26*0Sstevel@tonic-gateDBG= -O 27*0Sstevel@tonic-gateINCLUDE= -I$(SRCDIR) 28*0Sstevel@tonic-gateCC= cc 29*0Sstevel@tonic-gate 30*0Sstevel@tonic-gatelibrary_obj_rule() 31*0Sstevel@tonic-gate 32*0Sstevel@tonic-gateinstall_library_target(des,$(OBJS),$(SRCS),) 33*0Sstevel@tonic-gate 34*0Sstevel@tonic-gatetest(destest,libdes.a,) 35*0Sstevel@tonic-gatetest(rpw,libdes.a,) 36