Makefile 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. #
  2. # OpenSSL/crypto/cast/Makefile
  3. #
  4. DIR= cast
  5. TOP= ../..
  6. CC= cc
  7. CPP= $(CC) -E
  8. INCLUDES=
  9. CFLAG=-g
  10. MAKEFILE= Makefile
  11. AR= ar r
  12. CAST_ENC=c_enc.o
  13. CFLAGS= $(INCLUDES) $(CFLAG)
  14. ASFLAGS= $(INCLUDES) $(ASFLAG)
  15. AFLAGS= $(ASFLAGS)
  16. GENERAL=Makefile
  17. TEST=casttest.c
  18. APPS=
  19. LIB=$(TOP)/libcrypto.a
  20. LIBSRC=c_skey.c c_ecb.c c_enc.c c_cfb64.c c_ofb64.c
  21. LIBOBJ=c_skey.o c_ecb.o $(CAST_ENC) c_cfb64.o c_ofb64.o
  22. SRC= $(LIBSRC)
  23. EXHEADER= cast.h
  24. HEADER= cast_s.h cast_lcl.h $(EXHEADER)
  25. ALL= $(GENERAL) $(SRC) $(HEADER)
  26. top:
  27. (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
  28. all: lib
  29. lib: $(LIBOBJ)
  30. $(AR) $(LIB) $(LIBOBJ)
  31. $(RANLIB) $(LIB) || echo Never mind.
  32. @touch lib
  33. cast-586.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
  34. $(PERL) asm/cast-586.pl $(PERLASM_SCHEME) $(CLAGS) $(PROCESSOR) > $@
  35. files:
  36. $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
  37. links:
  38. @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
  39. @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
  40. @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
  41. install:
  42. @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
  43. @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
  44. do \
  45. (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
  46. chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
  47. done;
  48. tags:
  49. ctags $(SRC)
  50. tests:
  51. lint:
  52. lint -DLINT $(INCLUDES) $(SRC)>fluff
  53. update: depend
  54. depend:
  55. @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
  56. $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
  57. dclean:
  58. $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
  59. mv -f Makefile.new $(MAKEFILE)
  60. clean:
  61. rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
  62. # DO NOT DELETE THIS LINE -- make depend depends on it.
  63. c_cfb64.o: ../../e_os.h ../../include/openssl/cast.h
  64. c_cfb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
  65. c_cfb64.o: c_cfb64.c cast_lcl.h
  66. c_ecb.o: ../../e_os.h ../../include/openssl/cast.h
  67. c_ecb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
  68. c_ecb.o: ../../include/openssl/opensslv.h c_ecb.c cast_lcl.h
  69. c_enc.o: ../../e_os.h ../../include/openssl/cast.h
  70. c_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
  71. c_enc.o: c_enc.c cast_lcl.h
  72. c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h
  73. c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
  74. c_ofb64.o: c_ofb64.c cast_lcl.h
  75. c_skey.o: ../../e_os.h ../../include/openssl/cast.h
  76. c_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  77. c_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
  78. c_skey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
  79. c_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
  80. c_skey.o: c_skey.c cast_lcl.h cast_s.h