Makefile 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. #
  2. # OpenSSL/crypto/lhash/Makefile
  3. #
  4. DIR= lhash
  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. TEST=
  14. APPS=
  15. LIB=$(TOP)/libcrypto.a
  16. LIBSRC=lhash.c lh_stats.c
  17. LIBOBJ=lhash.o lh_stats.o
  18. SRC= $(LIBSRC)
  19. EXHEADER= lhash.h
  20. HEADER= $(EXHEADER)
  21. ALL= $(GENERAL) $(SRC) $(HEADER)
  22. top:
  23. (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
  24. all: lib
  25. lib: $(LIBOBJ)
  26. $(ARX) $(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 *.obj lib tags core .pure .nfs* *.old *.bak fluff
  55. # DO NOT DELETE THIS LINE -- make depend depends on it.
  56. lh_stats.o: ../../e_os.h ../../include/openssl/bio.h
  57. lh_stats.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
  58. lh_stats.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
  59. lh_stats.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
  60. lh_stats.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
  61. lh_stats.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
  62. lh_stats.o: ../../include/openssl/symhacks.h ../cryptlib.h lh_stats.c
  63. lhash.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
  64. lhash.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h
  65. lhash.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
  66. lhash.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
  67. lhash.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h lhash.c