Makefile 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #
  2. # OpenSSL/crypto/rc2/Makefile
  3. #
  4. DIR= rc2
  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=rc2test.c
  14. APPS=
  15. LIB=$(TOP)/libcrypto.a
  16. LIBSRC=rc2_ecb.c rc2_skey.c rc2_cbc.c rc2cfb64.c rc2ofb64.c
  17. LIBOBJ=rc2_ecb.o rc2_skey.o rc2_cbc.o rc2cfb64.o rc2ofb64.o
  18. SRC= $(LIBSRC)
  19. EXHEADER= rc2.h
  20. HEADER= rc2_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. $(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. rc2_cbc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
  57. rc2_cbc.o: rc2_cbc.c rc2_locl.h
  58. rc2_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
  59. rc2_ecb.o: ../../include/openssl/rc2.h rc2_ecb.c rc2_locl.h
  60. rc2_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
  61. rc2_skey.o: rc2_locl.h rc2_skey.c
  62. rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
  63. rc2cfb64.o: rc2_locl.h rc2cfb64.c
  64. rc2ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
  65. rc2ofb64.o: rc2_locl.h rc2ofb64.c