.gitignore

  1# ---> Autotools
  2# http://www.gnu.org/software/automake
  3
  4Makefile.in
  5/ar-lib
  6/mdate-sh
  7/py-compile
  8/test-driver
  9/ylwrap
 10
 11# http://www.gnu.org/software/autoconf
 12
 13autom4te.cache
 14/autoscan.log
 15/autoscan-*.log
 16/aclocal.m4
 17/compile
 18/config.guess
 19/config.h.in
 20/config.log
 21/config.status
 22/config.sub
 23/configure
 24/configure.scan
 25/depcomp
 26/install-sh
 27/missing
 28/stamp-h1
 29
 30# https://www.gnu.org/software/libtool/
 31
 32/ltmain.sh
 33
 34# http://www.gnu.org/software/texinfo
 35
 36/texinfo.tex
 37
 38# http://www.gnu.org/software/m4/
 39
 40m4/libtool.m4
 41m4/ltoptions.m4
 42m4/ltsugar.m4
 43m4/ltversion.m4
 44m4/lt~obsolete.m4
 45
 46# Generated Makefile 
 47# (meta build system like autotools, 
 48# can automatically generate from config.status script
 49# (which is called by configure script))
 50Makefile
 51
 52
 53# ---> C
 54# Prerequisites
 55*.d
 56
 57# Object files
 58*.o
 59*.ko
 60*.obj
 61*.elf
 62
 63# Linker output
 64*.ilk
 65*.map
 66*.exp
 67
 68# Precompiled Headers
 69*.gch
 70*.pch
 71
 72# Libraries
 73*.lib
 74*.a
 75*.la
 76*.lo
 77
 78# Shared objects (inc. Windows DLLs)
 79*.dll
 80*.so
 81*.so.*
 82*.dylib
 83
 84# Executables
 85*.exe
 86*.out
 87*.app
 88*.i*86
 89*.x86_64
 90*.hex
 91
 92# Debug files
 93*.dSYM/
 94*.su
 95*.idb
 96*.pdb
 97
 98# Kernel Module Compile Results
 99*.mod*
100*.cmd
101.tmp_versions/
102modules.order
103Module.symvers
104Mkfile.old
105dkms.conf
106
107
108build-aux/
109libtool
110.deps
111.dirstamp
112src/config.h
113src/config.h.in
114src/stamp-h1
115
116xmppc
117doc/doxygen/