mirror of
https://gitlab.freedesktop.org/libevdev/libevdev.git
synced 2025-12-20 08:00:09 +01:00
Review/update .gitignore files
Merge potentially useful patterns taken from other projects. Some application specific patterns were move to their respective directories. The only noticeable change is that *.patch is ignore to prevent accidental checkin of patches. The pattern "test-driver" could not be found and was removed. The test directory had not been updated since the move of all test cases in a single binary. Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
2420d2577b
commit
4f0f1ca68c
6 changed files with 51 additions and 36 deletions
69
.gitignore
vendored
69
.gitignore
vendored
|
|
@ -1,8 +1,12 @@
|
||||||
|
# GNU Build System (Autotools)
|
||||||
aclocal.m4
|
aclocal.m4
|
||||||
|
*.announce
|
||||||
autom4te.cache/
|
autom4te.cache/
|
||||||
autoscan.log
|
autoscan.log
|
||||||
|
build-aux/
|
||||||
ChangeLog
|
ChangeLog
|
||||||
compile
|
compile
|
||||||
|
config.cache
|
||||||
config.guess
|
config.guess
|
||||||
config.h
|
config.h
|
||||||
config.h.in
|
config.h.in
|
||||||
|
|
@ -15,45 +19,52 @@ config.sub
|
||||||
configure
|
configure
|
||||||
configure.scan
|
configure.scan
|
||||||
depcomp
|
depcomp
|
||||||
.deps/
|
.dirstamp
|
||||||
INSTALL
|
|
||||||
install-sh
|
install-sh
|
||||||
.libs/
|
|
||||||
libtool
|
libtool
|
||||||
libtool.m4
|
|
||||||
ltmain.sh
|
ltmain.sh
|
||||||
lt~obsolete.m4
|
|
||||||
ltoptions.m4
|
|
||||||
ltsugar.m4
|
|
||||||
ltversion.m4
|
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
mdate-sh
|
mdate-sh
|
||||||
missing
|
missing
|
||||||
mkinstalldirs
|
mkinstalldirs
|
||||||
*.pc
|
|
||||||
py-compile
|
|
||||||
stamp-h?
|
stamp-h?
|
||||||
symlink-tree
|
# Edit Compile Debug Document Distribute
|
||||||
texinfo.tex
|
|
||||||
ylwrap
|
|
||||||
*.la
|
|
||||||
*.lo
|
|
||||||
*.o
|
|
||||||
*~
|
*~
|
||||||
*.swp
|
*.[0-9]
|
||||||
.vimdir
|
*.[0-9]x
|
||||||
*.tar.*
|
*.bak
|
||||||
*.3
|
*.bin
|
||||||
libevdev-events
|
core
|
||||||
event-names.h
|
.deps/
|
||||||
html
|
*.dll
|
||||||
libevdev-*/
|
*.exe
|
||||||
|
*.gcda
|
||||||
*.gcno
|
*.gcno
|
||||||
*.gcov
|
*.gcov
|
||||||
*.gcda
|
*.kld
|
||||||
gcov-report.txt
|
*.ko
|
||||||
test-driver
|
*.ko.cmd
|
||||||
libevdev.doxygen
|
*.lai
|
||||||
*.announce
|
.libs/
|
||||||
|
*.l[oa]
|
||||||
|
*.[oa]
|
||||||
|
*.objq
|
||||||
|
*.patch
|
||||||
|
*.pc
|
||||||
|
*.pdb
|
||||||
|
*.pyc
|
||||||
|
py-compile
|
||||||
|
*.pyo
|
||||||
|
*.so
|
||||||
|
*.swo
|
||||||
|
*.swp
|
||||||
|
symlink-tree
|
||||||
tags
|
tags
|
||||||
|
*.tar.bz2
|
||||||
|
*.tar.gz
|
||||||
|
*.tar.xz
|
||||||
|
texinfo.tex
|
||||||
|
.vimdir
|
||||||
|
ylwrap
|
||||||
|
# Application Specific Files
|
||||||
|
|
|
||||||
2
doc/.gitignore
vendored
Normal file
2
doc/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
html/
|
||||||
|
libevdev.doxygen
|
||||||
1
libevdev/.gitignore
vendored
Normal file
1
libevdev/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
event-names.h
|
||||||
5
m4/.gitignore
vendored
Normal file
5
m4/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
libtool.m4
|
||||||
|
ltoptions.m4
|
||||||
|
ltsugar.m4
|
||||||
|
ltversion.m4
|
||||||
|
lt~obsolete.m4
|
||||||
9
test/.gitignore
vendored
9
test/.gitignore
vendored
|
|
@ -1,7 +1,2 @@
|
||||||
libevdev-print
|
gcov-report.txt
|
||||||
libevdev-events
|
test-libevdev
|
||||||
|
|
||||||
# ignore all tests, but not .c/.h files
|
|
||||||
test-*
|
|
||||||
!test-*.c
|
|
||||||
!test-*.h
|
|
||||||
|
|
|
||||||
1
tools/.gitignore
vendored
Normal file
1
tools/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
libevdev-events
|
||||||
Loading…
Add table
Reference in a new issue