Makefile 771 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ROOT=..
  2. include ../Make.config
  3. LIB=libsec.a
  4. OFILES=\
  5. aes.$O\
  6. blowfish.$O\
  7. decodepem.$O\
  8. des.$O\
  9. des3CBC.$O\
  10. des3ECB.$O\
  11. desCBC.$O\
  12. desECB.$O\
  13. desmodes.$O\
  14. dsaalloc.$O\
  15. dsagen.$O\
  16. dsaprimes.$O\
  17. dsaprivtopub.$O\
  18. dsasign.$O\
  19. dsaverify.$O\
  20. egalloc.$O\
  21. egdecrypt.$O\
  22. egencrypt.$O\
  23. eggen.$O\
  24. egprivtopub.$O\
  25. egsign.$O\
  26. egverify.$O\
  27. fastrand.$O\
  28. genprime.$O\
  29. genrandom.$O\
  30. gensafeprime.$O\
  31. genstrongprime.$O\
  32. hmac.$O\
  33. md4.$O\
  34. md5.$O\
  35. md5pickle.$O\
  36. nfastrand.$O\
  37. prng.$O\
  38. probably_prime.$O\
  39. rc4.$O\
  40. rsaalloc.$O\
  41. rsadecrypt.$O\
  42. rsaencrypt.$O\
  43. rsafill.$O\
  44. rsagen.$O\
  45. rsaprivtopub.$O\
  46. sha1.$O\
  47. sha1pickle.$O\
  48. smallprimes.$O
  49. default: $(LIB)
  50. $(LIB): $(OFILES)
  51. $(AR) r $(LIB) $(OFILES)
  52. $(RANLIB) $(LIB)
  53. %.$O: %.c
  54. $(CC) $(CFLAGS) $*.c