.gitignore 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. # Temp files
  2. *~
  3. *.swp
  4. *.bak
  5. *.backup
  6. \#*
  7. .\#*
  8. *\#
  9. *.sav
  10. *.save
  11. *.autosav
  12. *.autosave
  13. # Tests
  14. /test-driver
  15. /tests/Makefile
  16. /tests/Makefile.in
  17. /tests/test1
  18. /tests/test1Formatted
  19. /tests/test2
  20. /tests/test2Formatted
  21. /tests/test4
  22. /tests/testReplaceExisting
  23. /tests/testSubDir
  24. /tests/test_cast
  25. /tests/test_charcase
  26. /tests/test_compare
  27. /tests/test_deep_copy
  28. /tests/test_double_serializer
  29. /tests/test_float
  30. /tests/test_int_add
  31. /tests/test_json_pointer
  32. /tests/test_locale
  33. /tests/test_null
  34. /tests/test_parse
  35. /tests/test_parse_int64
  36. /tests/test_printbuf
  37. /tests/test_set_serializer
  38. /tests/test_set_value
  39. /tests/test_util_file
  40. /tests/test_visit
  41. /tests/*.vg.out
  42. /tests/*.log
  43. /tests/*.trs
  44. # Generated folders
  45. /Debug
  46. /Release
  47. /*/Debug
  48. /*/Release
  49. # Generated binaries
  50. *.lo
  51. *.o
  52. /libjson-c.la
  53. /libjson.la
  54. # Archives
  55. *.zip
  56. *.tar.*
  57. *.tgz
  58. *.gz
  59. *.bz2
  60. *.xz
  61. *.lz
  62. *.lzma
  63. *.7z
  64. *.dll
  65. *.deb
  66. *.rpm
  67. *.apk
  68. *.exe
  69. *.msi
  70. *.dmg
  71. *.ipa
  72. .deps/
  73. .libs/
  74. /aclocal.m4
  75. /autoconf-archive
  76. /autom4te.cache
  77. /config.guess
  78. /config.h.in
  79. /json_config.h
  80. /compile
  81. /config.h
  82. /config.log
  83. /config.status
  84. /config.sub
  85. /configure
  86. /depcomp
  87. /doc
  88. /install-sh
  89. /json.pc
  90. /json-c.pc
  91. /json-c-uninstalled.pc
  92. /libtool
  93. /ltmain.sh
  94. /Makefile
  95. /Makefile.in
  96. /missing
  97. /stamp-h1
  98. /stamp-h2
  99. # cmake auto-generated files
  100. /CMakeCache.txt
  101. /CMakeFiles
  102. /cmake_install.cmake
  103. /include
  104. /libjson-c.a
  105. /libjson-c.so