Clean up .gitignore
This commit is contained in:
parent
ea1d535145
commit
2abad185cd
|
@ -1,87 +1,70 @@
|
||||||
# autotools cruft
|
# autotools cruft
|
||||||
aclocal.m4
|
/INSTALL
|
||||||
autom4te.cache/
|
/Makefile.in
|
||||||
compile
|
/aclocal.m4
|
||||||
config.guess
|
/autom4te.cache/
|
||||||
config.h
|
/autostuff/
|
||||||
config.h.in
|
/configure
|
||||||
config.log
|
/configure.lineno
|
||||||
config.status
|
/m4/libtool.m4
|
||||||
config.sub
|
/m4/lt*.m4
|
||||||
configure
|
|
||||||
configure.lineno
|
|
||||||
depcomp
|
|
||||||
libtool
|
|
||||||
ltmain.sh
|
|
||||||
install-sh
|
|
||||||
map
|
|
||||||
missing
|
|
||||||
stamp-h1
|
|
||||||
autostuff/
|
|
||||||
/include/libsigrok/version.h
|
|
||||||
/include/libsigrok/stamp-h2
|
|
||||||
ChangeLog
|
|
||||||
INSTALL
|
|
||||||
tests/check_main
|
|
||||||
/libsigrok-*.tar.*
|
|
||||||
|
|
||||||
# recursive autoconf leftovers
|
# Editor/IDE cruft
|
||||||
.deps
|
|
||||||
Makefile
|
|
||||||
Makefile.in
|
|
||||||
.dirstamp
|
|
||||||
|
|
||||||
# build leftovers
|
|
||||||
*~
|
|
||||||
*.o
|
|
||||||
*.a
|
|
||||||
*.lo
|
|
||||||
*.la
|
|
||||||
.libs/
|
|
||||||
*.pc
|
|
||||||
|
|
||||||
# KDE backup files
|
|
||||||
*.kate-swp
|
*.kate-swp
|
||||||
|
*~
|
||||||
# IDE project files
|
/*.kdev4
|
||||||
*.kdev4
|
|
||||||
/Makefile.am.user
|
/Makefile.am.user
|
||||||
|
|
||||||
|
# Configure/build cruft
|
||||||
|
*.[ao]
|
||||||
|
*.l[ao]
|
||||||
|
.deps/
|
||||||
|
.dirstamp
|
||||||
|
.libs/
|
||||||
|
/ChangeLog
|
||||||
|
/Makefile
|
||||||
|
/config.*
|
||||||
|
/doxy/
|
||||||
|
/include/libsigrok/version.h
|
||||||
|
/libsigrok-*.tar.*
|
||||||
|
/libsigrok.pc
|
||||||
|
/libtool
|
||||||
|
stamp-h?
|
||||||
|
|
||||||
# Files generated by building C++ bindings
|
# Files generated by building C++ bindings
|
||||||
doxy/
|
/bindings/cxx/doxy/
|
||||||
bindings/cxx/doxy/
|
/bindings/cxx/enums.cpp
|
||||||
bindings/cxx/include/libsigrokcxx/enums.hpp
|
/bindings/cxx/enums.timestamp
|
||||||
bindings/cxx/enums.cpp
|
/bindings/cxx/include/libsigrokcxx/enums.hpp
|
||||||
bindings/cxx/enums.timestamp
|
/bindings/cxx/libsigrokcxx.pc
|
||||||
bindings/swig/enums.i
|
/bindings/swig/enums.i
|
||||||
|
|
||||||
# Files generated by building Python bindings
|
# Files generated by building Python bindings
|
||||||
*.pyc
|
*.pyc
|
||||||
bindings/python/sigrok/core/doc.i
|
/bindings/python/build/
|
||||||
bindings/python/dist/
|
/bindings/python/dist/
|
||||||
bindings/python/build
|
/bindings/python/doxy/
|
||||||
bindings/python/libsigrok.egg-info/
|
/bindings/python/libsigrok.egg-info/
|
||||||
bindings/python/sigrok/__pycache__/
|
/bindings/python/libsigrok.py
|
||||||
bindings/python/libsigrok.py
|
/bindings/python/libsigrok_python_wrap.c
|
||||||
bindings/python/libsigrok_python_wrap.c
|
/bindings/python/sigrok/__pycache__/
|
||||||
bindings/python/sigrok/core/lowlevel.py
|
/bindings/python/sigrok/core/classes.py
|
||||||
bindings/python/sigrok/core/lowlevel_wrap.c
|
/bindings/python/sigrok/core/classes_wrap.cpp
|
||||||
bindings/python/sigrok/core/classes.py
|
/bindings/python/sigrok/core/doc.i
|
||||||
bindings/python/sigrok/core/classes_wrap.cpp
|
/bindings/python/sigrok/core/lowlevel.py
|
||||||
bindings/python/timestamp
|
/bindings/python/sigrok/core/lowlevel_wrap.c
|
||||||
bindings/python/doxy/
|
/bindings/python/timestamp
|
||||||
|
|
||||||
# Files generated by building Java bindings
|
# Files generated by building Java bindings
|
||||||
*.class
|
*.class
|
||||||
bindings/java/org/sigrok/core/classes/doc.i
|
/bindings/java/libsigrok_java_core_classes.so
|
||||||
bindings/java/org/sigrok/core/classes/*.java
|
/bindings/java/org/sigrok/core/classes/*.java
|
||||||
bindings/java/org/sigrok/core/classes/classes_wrap.cxx
|
/bindings/java/org/sigrok/core/classes/classes_wrap.cxx
|
||||||
bindings/java/libsigrok_java_core_classes.so
|
/bindings/java/org/sigrok/core/classes/doc.i
|
||||||
bindings/java/sigrok-core.jar
|
/bindings/java/sigrok-core.jar
|
||||||
|
|
||||||
# Files generated by the testsuite
|
# Files generated by the testsuite
|
||||||
test-suite.log
|
/test-suite.log
|
||||||
tests/*.log
|
/tests/*.log
|
||||||
tests/*.trs
|
/tests/*.trs
|
||||||
tests/main
|
/tests/main
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue