.gitignore 784 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Development tools
  2. /devel-tools/
  3. # Result of autoreconf -i
  4. /Makefile.in
  5. /aclocal.m4
  6. /config.aux/
  7. /config.h.in
  8. /config.h.in~
  9. /configure
  10. # m4/ directory: only keep certain files
  11. /m4/*
  12. !/m4/check_disable_compiler_warnings.m4
  13. !/m4/check_libcperciva_posix.m4
  14. !/m4/check_memlimit_support.m4
  15. !/m4/check_posix_sh.m4
  16. !/m4/check_solaris_c99.m4
  17. # Standard out-of-tree build directory
  18. /build/
  19. # In-tree configure
  20. .deps/
  21. /Makefile
  22. /config.h
  23. /config.log
  24. /config.status
  25. /libtool
  26. /stamp-h1
  27. # In-tree build, only top-level
  28. /cpusupport-config.h
  29. # In-tree build, all directories
  30. .dirstamp
  31. .libs/
  32. *.la
  33. *.lo
  34. *.o
  35. # In-tree binaries
  36. /scrypt
  37. /tests/libscrypt-kdf/sample-libscrypt-kdf
  38. /tests/valgrind/potential-memleaks
  39. /tests/verify-strings/test_scrypt
  40. # In-tree test output
  41. /tests-output/
  42. /tests-valgrind/