Skip to content

Commit

Permalink
add gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Björn Esser committed Jun 13, 2012
1 parent ade2f45 commit d399ab3
Showing 1 changed file with 109 additions and 25 deletions.
134 changes: 109 additions & 25 deletions .gitignore
@@ -1,26 +1,110 @@
config.cache
config.status
stamp-h*
libtool
config.log
Makefile
# GNU Autotools
Makefile.in
configure
config.h
config.h.in
aclocal.m4
newvers.sh
Makefile.am
config.guess
config.sub
depcomp
install-sh
ltmain.sh
missing
mkinstalldirs
autom4te.cache
configure.in
*.pot
Makefile.am.common
*.ami
*.m4
/autom4te.cache
/aclocal.m4
/compile
/configure
/depcomp
/install-sh
/missing

# Object files
*.o

# Libraries
*.lib

# Shared objects (inc. Windows DLLs)
*.dll
*.so

# Executables
*.exe
*.out

# Compiled Object files
*.slo
*.lo
*.o

# Compiled Dynamic libraries
*.so
*.so.*

# Compiled Static libraries
*.lai
*.la
*.a

# CMake
CMakeCache.txt
CMakeFiles
Makefile
cmake_install.cmake
install_manifest.txt

# CMake project-bindir
build*/

# Archives
# It's better to unpack these files and commit the raw source because
# git has its own built in compression methods.
*.7z
*.jar
*.rar
*.zip
*.gz
*.bzip
*.bz2
*.xz
*.lzma

# packing-only formats
*.iso
*.tar

# package management formats
*.dmg
*.xpi
*.gem
*.egg
*.deb
*.rpm

# CVS
/CVS/*
*/CVS/*
.cvsignore
*/.cvsignore*~
\#*\#

# Emacs
/.emacs.desktop
/.emacs.desktop.lock
.elc
auto-save-list
tramp
.\#*

# Emacs Org-mode
.org-id-locations

# Unix/Linux
*_archive
.*
!.gitignore
*~
*.bak
*.log
*.old
*swp
tmp

# KDE
.directory

# Subversion
.svn/

# OBS commit
package/

0 comments on commit d399ab3

Please sign in to comment.