.gitignore 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # git-ls-files --others --exclude-from=.git/info/exclude
  2. # Lines that start with '#' are comments.
  3. # For a project mostly in C, the following would be a good set of
  4. # exclude patterns (uncomment them if you want to use them):
  5. *.orig
  6. *.rej
  7. *.mergebackup
  8. *.[oa]
  9. *~
  10. *.*.swp
  11. Makefile
  12. Makefile.in
  13. # o_0
  14. Makefile.in.in
  15. !tests/regress/Makefile
  16. # The local aclocal.m4 file
  17. aclocal.m4
  18. m4/
  19. shave/lt*
  20. shave/libtool.m4
  21. shave/shave
  22. shave/shave-libtool
  23. # The output of the configure script
  24. conf/
  25. config.guess
  26. config.log
  27. config.status
  28. config.sub
  29. # The configure script itself
  30. configure
  31. # The libopkg directory artifacts
  32. libopkg/config.h
  33. libopkg/config.h.in
  34. libopkg/stamp-h1
  35. # Various scripts used for libtool and the like
  36. install-sh
  37. libtool
  38. ltmain.sh
  39. missing
  40. depcomp
  41. # opkg stuff
  42. libopkg.pc
  43. utils/update-alternatives
  44. autom4te.cache/
  45. # Binaries
  46. *.la
  47. *.lo
  48. *.o
  49. *.so
  50. .libs/
  51. .deps/
  52. src/opkg-cl
  53. tests/libopkg_test
  54. tests/opkg_active_list_test
  55. tests/opkg_extract_test
  56. tests/opkg_hash_test
  57. # Man pages
  58. man/*.1
  59. # CMake artifacts
  60. CMakeCache.txt
  61. CMakeFiles/
  62. cmake_install.cmake
  63. libbb/CMakeFiles/
  64. libbb/cmake_install.cmake
  65. libopkg/CMakeFiles/
  66. libopkg/cmake_install.cmake
  67. src/CMakeFiles/
  68. src/cmake_install.cmake
  69. tests/CMakeFiles/
  70. tests/cmake_install.cmake