Imakefile 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # This Imakefile has not been tested for a while but it should still
  2. # work when placed in the correct directory in the kerberos v 4 distribution
  3. SRCS= cbc_cksm.c cbc_enc.c ecb_enc.c pcbc_enc.c \
  4. qud_cksm.c rand_key.c read_pwd.c set_key.c str2key.c \
  5. enc_read.c enc_writ.c fcrypt.c cfb_enc.c \
  6. ecb3_enc.c ofb_enc.c ofb64enc.c
  7. OBJS= cbc_cksm.o cbc_enc.o ecb_enc.o pcbc_enc.o \
  8. qud_cksm.o rand_key.o read_pwd.o set_key.o str2key.o \
  9. enc_read.o enc_writ.o fcrypt.o cfb_enc.o \
  10. ecb3_enc.o ofb_enc.o ofb64enc.o
  11. GENERAL=COPYRIGHT FILES INSTALL Imakefile README VERSION makefile times \
  12. vms.com KERBEROS
  13. DES= des.c des.man
  14. TESTING=destest.c speed.c rpw.c
  15. LIBDES= des_crypt.man des.h des_locl.h podd.h sk.h spr.h
  16. PERL= des.pl testdes.pl doIP doPC1 doPC2 PC1 PC2 shifts.pl
  17. CODE= $(GENERAL) $(DES) $(TESTING) $(SRCS) $(LIBDES) $(PERL)
  18. SRCDIR=$(SRCTOP)/lib/des
  19. DBG= -O
  20. INCLUDE= -I$(SRCDIR)
  21. CC= cc
  22. library_obj_rule()
  23. install_library_target(des,$(OBJS),$(SRCS),)
  24. test(destest,libdes.a,)
  25. test(rpw,libdes.a,)