Makefile 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #
  2. # OpenSSL/crypto/cmac/Makefile
  3. #
  4. DIR= cmac
  5. TOP= ../..
  6. CC= cc
  7. INCLUDES=
  8. CFLAG=-g
  9. MAKEFILE= Makefile
  10. AR= ar r
  11. CFLAGS= $(INCLUDES) $(CFLAG)
  12. GENERAL=Makefile
  13. LIB=$(TOP)/libcrypto.a
  14. LIBSRC=cmac.c cm_ameth.c cm_pmeth.c
  15. LIBOBJ=cmac.o cm_ameth.o cm_pmeth.o
  16. SRC= $(LIBSRC)
  17. HEADER=
  18. ALL= $(GENERAL) $(SRC) $(HEADER)
  19. top:
  20. (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
  21. all: lib
  22. lib: $(LIBOBJ)
  23. $(AR) $(LIB) $(LIBOBJ)
  24. $(RANLIB) $(LIB) || echo Never mind.
  25. @touch lib
  26. files:
  27. $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
  28. tags:
  29. ctags $(SRC)
  30. tests:
  31. lint:
  32. lint -DLINT $(INCLUDES) $(SRC)>fluff
  33. depend:
  34. @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
  35. $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
  36. dclean:
  37. $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
  38. mv -f Makefile.new $(MAKEFILE)
  39. clean:
  40. rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
  41. # DO NOT DELETE THIS LINE -- make depend depends on it.
  42. cm_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
  43. cm_ameth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  44. cm_ameth.o: ../../include/openssl/cmac.h ../../include/openssl/crypto.h
  45. cm_ameth.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  46. cm_ameth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  47. cm_ameth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  48. cm_ameth.o: ../../include/openssl/opensslconf.h
  49. cm_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  50. cm_ameth.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  51. cm_ameth.o: ../../include/openssl/symhacks.h ../cryptlib.h
  52. cm_ameth.o: ../include/internal/asn1_int.h cm_ameth.c
  53. cm_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
  54. cm_pmeth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
  55. cm_pmeth.o: ../../include/openssl/cmac.h ../../include/openssl/conf.h
  56. cm_pmeth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  57. cm_pmeth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  58. cm_pmeth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
  59. cm_pmeth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
  60. cm_pmeth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
  61. cm_pmeth.o: ../../include/openssl/opensslconf.h
  62. cm_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  63. cm_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
  64. cm_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
  65. cm_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
  66. cm_pmeth.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
  67. cm_pmeth.o: ../cryptlib.h ../include/internal/evp_int.h cm_pmeth.c
  68. cmac.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
  69. cmac.o: ../../include/openssl/buffer.h ../../include/openssl/cmac.h
  70. cmac.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  71. cmac.o: ../../include/openssl/err.h ../../include/openssl/evp.h
  72. cmac.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  73. cmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
  74. cmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  75. cmac.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  76. cmac.o: ../../include/openssl/symhacks.h ../cryptlib.h cmac.c