.gitignore 844 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. /configure~
  11. # m4/ directory: only keep certain files
  12. /m4/*
  13. !/m4/check_darwin_paths.m4
  14. !/m4/check_disable_compiler_warnings.m4
  15. !/m4/check_libcperciva_posix.m4
  16. !/m4/check_memlimit_support.m4
  17. !/m4/check_posix_sh.m4
  18. !/m4/check_solaris_c99.m4
  19. # Standard out-of-tree build directory
  20. /build/
  21. # In-tree configure
  22. .deps/
  23. /Makefile
  24. /config.h
  25. /config.log
  26. /config.status
  27. /libtool
  28. /stamp-h1
  29. # In-tree build, only top-level
  30. /apisupport-config.h
  31. /cpusupport-config.h
  32. # In-tree build, all directories
  33. .dirstamp
  34. .libs/
  35. *.la
  36. *.lo
  37. *.o
  38. # In-tree binaries
  39. /scrypt
  40. /tests/libscrypt-kdf/sample-libscrypt-kdf
  41. /tests/valgrind/potential-memleaks
  42. /tests/verify-strings/test_scrypt
  43. # In-tree test output
  44. /tests-output/
  45. /tests-valgrind/