Makefile 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #
  2. # crypto/ecdh/Makefile
  3. #
  4. DIR= ecdh
  5. TOP= ../..
  6. CC= cc
  7. INCLUDES= -I.. -I$(TOP) -I../../include
  8. CFLAG=-g -Wall
  9. MAKEFILE= Makefile
  10. AR= ar r
  11. CFLAGS= $(INCLUDES) $(CFLAG)
  12. GENERAL=Makefile
  13. TEST=ecdhtest.c
  14. APPS=
  15. LIB=$(TOP)/libcrypto.a
  16. LIBSRC= ech_lib.c ech_ossl.c ech_key.c ech_err.c
  17. LIBOBJ= ech_lib.o ech_ossl.o ech_key.o ech_err.o
  18. SRC= $(LIBSRC)
  19. EXHEADER= ecdh.h
  20. HEADER= ech_locl.h $(EXHEADER)
  21. ALL= $(GENERAL) $(SRC) $(HEADER)
  22. top:
  23. (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
  24. all: lib
  25. lib: $(LIBOBJ)
  26. $(AR) $(LIB) $(LIBOBJ)
  27. $(RANLIB) $(LIB) || echo Never mind.
  28. @touch lib
  29. files:
  30. $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
  31. links:
  32. @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
  33. @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
  34. @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
  35. install:
  36. @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
  37. @headerlist="$(EXHEADER)"; for i in $$headerlist; \
  38. do \
  39. (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
  40. chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
  41. done;
  42. tags:
  43. ctags $(SRC)
  44. tests:
  45. lint:
  46. lint -DLINT $(INCLUDES) $(SRC)>fluff
  47. depend:
  48. @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
  49. $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
  50. dclean:
  51. $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
  52. mv -f Makefile.new $(MAKEFILE)
  53. clean:
  54. rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
  55. # DO NOT DELETE THIS LINE -- make depend depends on it.
  56. ech_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
  57. ech_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  58. ech_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  59. ech_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
  60. ech_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
  61. ech_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
  62. ech_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
  63. ech_err.o: ech_err.c
  64. ech_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
  65. ech_key.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  66. ech_key.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  67. ech_key.o: ../../include/openssl/engine.h ../../include/openssl/opensslconf.h
  68. ech_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  69. ech_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  70. ech_key.o: ../../include/openssl/symhacks.h ech_key.c ech_locl.h
  71. ech_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
  72. ech_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  73. ech_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
  74. ech_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
  75. ech_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  76. ech_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  77. ech_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  78. ech_lib.o: ../../include/openssl/symhacks.h ech_lib.c ech_locl.h
  79. ech_ossl.o: ../../e_os.h ../../include/openssl/asn1.h
  80. ech_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
  81. ech_ossl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  82. ech_ossl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
  83. ech_ossl.o: ../../include/openssl/ecdh.h ../../include/openssl/err.h
  84. ech_ossl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
  85. ech_ossl.o: ../../include/openssl/opensslconf.h
  86. ech_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  87. ech_ossl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
  88. ech_ossl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
  89. ech_ossl.o: ../cryptlib.h ech_locl.h ech_ossl.c