Makefile 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. #
  2. # OpenSSL/crypto/md5/Makefile
  3. #
  4. DIR= md5
  5. TOP= ../..
  6. CC= cc
  7. CPP= $(CC) -E
  8. INCLUDES=-I.. -I$(TOP) -I../../include
  9. CFLAG=-g
  10. MAKEFILE= Makefile
  11. AR= ar r
  12. MD5_ASM_OBJ=
  13. CFLAGS= $(INCLUDES) $(CFLAG)
  14. ASFLAGS= $(INCLUDES) $(ASFLAG)
  15. AFLAGS= $(ASFLAGS)
  16. GENERAL=Makefile
  17. TEST=md5test.c
  18. APPS=
  19. LIB=$(TOP)/libcrypto.a
  20. LIBSRC=md5_dgst.c md5_one.c
  21. LIBOBJ=md5_dgst.o md5_one.o $(MD5_ASM_OBJ)
  22. SRC= $(LIBSRC)
  23. EXHEADER= md5.h
  24. HEADER= md5_locl.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. md5-586.s: asm/md5-586.pl ../perlasm/x86asm.pl
  34. $(PERL) asm/md5-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
  35. md5-x86_64.s: asm/md5-x86_64.pl
  36. $(PERL) asm/md5-x86_64.pl $(PERLASM_SCHEME) > $@
  37. md5-ia64.s: asm/md5-ia64.S
  38. $(CC) $(CFLAGS) -E asm/md5-ia64.S | \
  39. $(PERL) -ne 's/;\s+/;\n/g; print;' > $@
  40. md5-sparcv9.S: asm/md5-sparcv9.pl
  41. $(PERL) asm/md5-sparcv9.pl $@ $(CFLAGS)
  42. files:
  43. $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
  44. links:
  45. @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
  46. @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
  47. @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
  48. install:
  49. @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
  50. @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
  51. do \
  52. (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
  53. chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
  54. done;
  55. tags:
  56. ctags $(SRC)
  57. tests:
  58. lint:
  59. lint -DLINT $(INCLUDES) $(SRC)>fluff
  60. update: depend
  61. depend:
  62. @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
  63. $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
  64. dclean:
  65. $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
  66. mv -f Makefile.new $(MAKEFILE)
  67. clean:
  68. rm -f *.s *.S *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
  69. # DO NOT DELETE THIS LINE -- make depend depends on it.
  70. md5_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  71. md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
  72. md5_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  73. md5_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  74. md5_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md5_dgst.c
  75. md5_dgst.o: md5_locl.h
  76. md5_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
  77. md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
  78. md5_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  79. md5_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  80. md5_one.o: ../../include/openssl/symhacks.h md5_one.c