Makefile 536 B

12345678910111213141516171819
  1. all: hashwrap.exe
  2. wrappers: hashwrap.exe
  3. cd ../System.Security.Cryptography; \
  4. mono --debug ../tools/hashwrap.exe MD5Cng MD5 MD5CryptoServiceProvider \
  5. SHA1Cng SHA1 SHA1Managed \
  6. SHA256Cng SHA256 SHA256Managed \
  7. SHA384Cng SHA384 SHA384Managed \
  8. SHA512Cng SHA512 SHA512Managed \
  9. SHA256CryptoServiceProvider SHA256 SHA256Managed \
  10. SHA384CryptoServiceProvider SHA384 SHA384Managed \
  11. SHA512CryptoServiceProvider SHA512 SHA512Managed; \
  12. cd ../tools;
  13. hashwrap.exe: hashwrap.cs
  14. mcs -debug hashwrap.cs
  15. clean:
  16. rm -f *.exe*