/ .gitignore
.gitignore
1 # Object files 2 *.o 3 *.ko 4 *.obj 5 *.elf 6 7 # Precompiled Headers 8 *.gch 9 *.pch 10 11 # Libraries 12 *.lib 13 *.a 14 *.la 15 *.lo 16 17 # Shared objects (inc. Windows DLLs) 18 *.dll 19 *.so 20 *.so.* 21 *.dylib 22 23 # Executables 24 *.exe 25 *.out 26 *.app 27 *.i*86 28 *.x86_64 29 *.hex 30 31 # Debug files 32 *.dSYM/ 33 *.su 34 35 # visual code 36 *.vscode/ 37 38 # logs 39 *.log 40 41 # Autotools 42 # http://www.gnu.org/software/automake 43 44 Makefile.in 45 /ar-lib 46 /mdate-sh 47 /py-compile 48 /test-driver 49 /ylwrap 50 51 # http://www.gnu.org/software/autoconf 52 /autom4te.cache 53 /autoscan.log 54 /autoscan-*.log 55 /aclocal.m4 56 /compile 57 /config.guess 58 /config.h.in 59 /config.sub 60 /configure 61 /configure.scan 62 /depcomp 63 /install-sh 64 /missing 65 /stamp-h1 66 Makecache 67 build-aux/compile 68 build-aux/depcomp 69 build-aux/install-sh 70 build-aux/missing 71 72 # https://www.gnu.org/software/libtool/ 73 74 /ltmain.sh 75 76 # http://www.gnu.org/software/texinfo 77 78 /texinfo.tex 79 80 .deps/ 81 .libs/ 82 Makefile 83 /libtool 84 /config.* 85 86 tests/* 87 !tests/Makefile.am 88 !tests/*.c 89 !tests/*.h