Updated
This commit is contained in:
parent
be8f71f8a1
commit
fc41bb48ba
1 changed files with 17 additions and 17 deletions
34
.gitignore
vendored
34
.gitignore
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
# git-ls-files --others --exclude-from=.git/info/exclude
|
# git-ls-files --others --exclude-from=.git/info/exclude
|
||||||
# Lines that start with '#' are comments.
|
# Lines that start with '#' are comments.
|
||||||
|
|
||||||
# editor and misc backup files - anywhere
|
# Editor and misc backup files - anywhere
|
||||||
*~
|
*~
|
||||||
.*~
|
.*~
|
||||||
*.bak
|
*.bak
|
||||||
|
|
@ -10,41 +10,38 @@
|
||||||
*.orig[0-9][0-9]
|
*.orig[0-9][0-9]
|
||||||
\#*\#
|
\#*\#
|
||||||
|
|
||||||
# file-browser settings - anywhere
|
# File-browser settings - anywhere
|
||||||
.directory
|
.directory
|
||||||
|
|
||||||
# CVS recovered versions - anywhere
|
# CVS recovered versions - anywhere
|
||||||
.#*
|
.#*
|
||||||
|
|
||||||
# objects and archives - anywhere
|
# Objects and archives - anywhere
|
||||||
*.[oa]
|
*.[oa]
|
||||||
*.la
|
*.la
|
||||||
*.so
|
*.so
|
||||||
*.jar
|
|
||||||
|
|
||||||
# derived files
|
# Derived files
|
||||||
lex.yy.c
|
lex.yy.c
|
||||||
|
|
||||||
# Corefiles
|
# Corefiles
|
||||||
core
|
core
|
||||||
|
|
||||||
# dependency files - anywhere
|
# Dependency files - anywhere
|
||||||
*.dep
|
*.dep
|
||||||
|
|
||||||
# lnInclude (symlink) directories - anywhere
|
# lnInclude (symlink) directories - anywhere
|
||||||
lnInclude
|
lnInclude
|
||||||
|
|
||||||
# build directories - anywhere
|
# Build directories - anywhere
|
||||||
linux*Clang*/
|
linux*Clang*/
|
||||||
linux*Gcc*/
|
linux*Gcc*/
|
||||||
linux*Icc*/
|
linux*Icc*/
|
||||||
linuxming*/
|
|
||||||
SiCortex*Gcc*/
|
|
||||||
solaris*Gcc*/
|
solaris*Gcc*/
|
||||||
SunOS*Gcc*/
|
SunOS*Gcc*/
|
||||||
platforms/
|
platforms/
|
||||||
|
|
||||||
# reinstate wmake/rules that might look like build directories
|
# Reinstate wmake/rules that might look like build directories
|
||||||
!wmake/rules/*/
|
!wmake/rules/*/
|
||||||
|
|
||||||
# doxygen generated documentation
|
# doxygen generated documentation
|
||||||
|
|
@ -53,35 +50,38 @@ doc/Doxygen/latex
|
||||||
doc/Doxygen/man
|
doc/Doxygen/man
|
||||||
doc/Doxygen/DTAGS
|
doc/Doxygen/DTAGS
|
||||||
|
|
||||||
# generated files in the main directory (e.g. ReleaseNotes-?.?.html)
|
# Generated files in the main directory (e.g. ReleaseNotes-?.?.html)
|
||||||
# and in the doc directory
|
# and in the doc directory
|
||||||
/*.html
|
/*.html
|
||||||
/doc/*.html
|
/doc/*.html
|
||||||
|
|
||||||
# untracked configuration files
|
# Untracked configuration files
|
||||||
/etc/prefs.csh
|
/etc/prefs.csh
|
||||||
/etc/prefs.sh
|
/etc/prefs.sh
|
||||||
/etc/config/prefs.csh
|
/etc/config/prefs.csh
|
||||||
/etc/config/prefs.sh
|
/etc/config/prefs.sh
|
||||||
|
|
||||||
# source packages - anywhere
|
# Source packages - anywhere
|
||||||
*.tar.bz2
|
*.tar.bz2
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
*.tar
|
*.tar
|
||||||
*.tgz
|
*.tgz
|
||||||
*.gtgz
|
*.gtgz
|
||||||
|
|
||||||
# ignore the persistent .build tag in the main directory
|
# Ignore the persistent .build tag in the main directory
|
||||||
/.build
|
/.build
|
||||||
|
|
||||||
# ignore .timeStamp in the main directory
|
# Ignore .timeStamp in the main directory
|
||||||
/.timeStamp
|
/.timeStamp
|
||||||
|
|
||||||
# ignore .tags in the main directory
|
# Ignore .tags in the main directory
|
||||||
/.tags
|
/.tags
|
||||||
|
|
||||||
# ignore eclipse project files in the main directory
|
# Ignore eclipse project files in the main directory
|
||||||
/.cproject
|
/.cproject
|
||||||
/.project
|
/.project
|
||||||
|
|
||||||
|
# Ignore the test directory
|
||||||
|
/tutorialsTest
|
||||||
|
|
||||||
# end-of-file
|
# end-of-file
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue