diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2013-12-13 17:15:14 +0000 |
---|---|---|
committer | Damien Lespiau <damien.lespiau@intel.com> | 2013-12-13 18:17:25 +0000 |
commit | bd73fd02e905926b3dfeff062704d5b497dc9f0f (patch) | |
tree | dd736f6976c1227a911ae967dc460f534e3faad0 /.gitignore | |
parent | 4c5de721c4ef96ef412fd6af4cb415f04a7515f6 (diff) |
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>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,6 @@ bsd-core/*/@ bsd-core/*/machine +*~ *.1 *.3 *.5 @@ -9,10 +10,13 @@ bsd-core/*/machine *.ko.cmd *.la *.lo +*.log *.mod.c *.mod.o *.o *.o.cmd +*.sw? +*.trs .depend .deps .libs @@ -21,8 +25,10 @@ bsd-core/*/machine .*install* Makefile Makefile.in +TAGS aclocal.m4 autom4te.cache +build-aux bus_if.h compile config.guess @@ -82,6 +88,7 @@ tests/setversion tests/updatedraw tests/modeprint/modeprint tests/modetest/modetest +tests/name_from_fd tests/kmstest/kmstest tests/vbltest/vbltest tests/radeon/radeon_ttm |