gitignore: Ignore various generated files
- *.log/*.trs are generated by make check - TAGS are generated by make tags - build-aux, config.h.in~ by autoconf - *.sw? are temporary files create by vim - name_from_fd wasn't ignored yet for some reason v2: Ignore *~ as well (Daniel Vetter) Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>main
parent
4c5de721c4
commit
bd73fd02e9
|
@ -1,5 +1,6 @@
|
||||||
bsd-core/*/@
|
bsd-core/*/@
|
||||||
bsd-core/*/machine
|
bsd-core/*/machine
|
||||||
|
*~
|
||||||
*.1
|
*.1
|
||||||
*.3
|
*.3
|
||||||
*.5
|
*.5
|
||||||
|
@ -9,10 +10,13 @@ bsd-core/*/machine
|
||||||
*.ko.cmd
|
*.ko.cmd
|
||||||
*.la
|
*.la
|
||||||
*.lo
|
*.lo
|
||||||
|
*.log
|
||||||
*.mod.c
|
*.mod.c
|
||||||
*.mod.o
|
*.mod.o
|
||||||
*.o
|
*.o
|
||||||
*.o.cmd
|
*.o.cmd
|
||||||
|
*.sw?
|
||||||
|
*.trs
|
||||||
.depend
|
.depend
|
||||||
.deps
|
.deps
|
||||||
.libs
|
.libs
|
||||||
|
@ -21,8 +25,10 @@ bsd-core/*/machine
|
||||||
.*install*
|
.*install*
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
|
TAGS
|
||||||
aclocal.m4
|
aclocal.m4
|
||||||
autom4te.cache
|
autom4te.cache
|
||||||
|
build-aux
|
||||||
bus_if.h
|
bus_if.h
|
||||||
compile
|
compile
|
||||||
config.guess
|
config.guess
|
||||||
|
@ -82,6 +88,7 @@ tests/setversion
|
||||||
tests/updatedraw
|
tests/updatedraw
|
||||||
tests/modeprint/modeprint
|
tests/modeprint/modeprint
|
||||||
tests/modetest/modetest
|
tests/modetest/modetest
|
||||||
|
tests/name_from_fd
|
||||||
tests/kmstest/kmstest
|
tests/kmstest/kmstest
|
||||||
tests/vbltest/vbltest
|
tests/vbltest/vbltest
|
||||||
tests/radeon/radeon_ttm
|
tests/radeon/radeon_ttm
|
||||||
|
|
Loading…
Reference in New Issue