.gitignore: move *.lex.c *.tab.[ch] patterns to the top-level .gitignore
These patterns are common to host programs that require lexer and parser. Move them to the top .gitignore. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Frank Rowand <frowand.list@gmail.com>
This commit is contained in:
parent
63185b46cd
commit
5988930027
|
@ -22,6 +22,7 @@
|
||||||
*.gz
|
*.gz
|
||||||
*.i
|
*.i
|
||||||
*.ko
|
*.ko
|
||||||
|
*.lex.c
|
||||||
*.ll
|
*.ll
|
||||||
*.lst
|
*.lst
|
||||||
*.lz4
|
*.lz4
|
||||||
|
@ -37,6 +38,7 @@
|
||||||
*.so.dbg
|
*.so.dbg
|
||||||
*.su
|
*.su
|
||||||
*.symtypes
|
*.symtypes
|
||||||
|
*.tab.[ch]
|
||||||
*.tar
|
*.tar
|
||||||
*.xz
|
*.xz
|
||||||
Module.symvers
|
Module.symvers
|
||||||
|
|
|
@ -1,4 +1 @@
|
||||||
dtc
|
dtc
|
||||||
dtc-lexer.lex.c
|
|
||||||
dtc-parser.tab.c
|
|
||||||
dtc-parser.tab.h
|
|
||||||
|
|
|
@ -1,4 +1 @@
|
||||||
*.lex.c
|
|
||||||
*.tab.c
|
|
||||||
*.tab.h
|
|
||||||
genksyms
|
genksyms
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
#
|
#
|
||||||
# Generated files
|
# Generated files
|
||||||
#
|
#
|
||||||
*.lex.c
|
|
||||||
*.tab.c
|
|
||||||
*.tab.h
|
|
||||||
*.moc
|
*.moc
|
||||||
gconf.glade.h
|
gconf.glade.h
|
||||||
*.pot
|
*.pot
|
||||||
|
|
Loading…
Reference in New Issue