-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.gitignore
132 lines (106 loc) · 1.92 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# Ignore top-level "README" files. They are all auto-generated by the
# Autotools bootstrapping or maintainer documentation building
# process.
ABOUT-NLS
AUTHORS
INSTALL
ChangeLog
NEWS
README
# Ignore built documentation
/doc/mininim.pdf
/doc/mininim.dvi
/doc/mininim.t2p/
/doc/mininim.t2d/
/mininim-*.tar.gz
/mininim-*.tar.gz.sig
/doc/man/mininim.1
/doc/mininim-figures/*.eps
/ANNOUNCEMENT
/DONORS
/GNU-FREE-DOCUMENTATION-LICENSE
/LINUX-AND-THE-GNU-SYSTEM
/THANKS
/TODO
# Ignore Makefiles throughout the whole tree.
**/Makefile
**/Makefile.in
# Ignore binary objects, Guile snarfed files and dependency
# directories in source code directory.
src/**/*.[ox]
/mininim
/mininim.exe
*.rc.o
**/.deps/
*.gch
# Ignore Emacs backup files recursively.
**/*~
**/*\#*
# Ignore gnulib files
/gnulib
# Ignore all Autoconf M4 files except the non-standard ones used by
# this project. Ignore also the Autom4te temporary cache.
autom4te.cache/
aclocal.m4
m4/*.m4
!m4/ax_prog_doxygen.m4
!m4/ax_prog_guile_version.m4
!m4/ax_compare_version.m4
# Ignore all libintl generic files in the PO directory, but keep those
# specific to this project.
po/*
!po/Makevars
!po/POTFILES.in
# Ignore all GNU Autotools auxiliary scripts, but keep the helper
# files specific to this project.
compile
depcomp
install-sh
missing
build-aux/*
!build-aux/gendocs.sh
!build-aux/git2cl
!build-aux/gnupload
!build-aux/make-announcement-mail
!build-aux/ncftpput
!build-aux/texinfo.tex
!build-aux/*.m4
!build-aux/config.rpath
# Ignore all Autotools configuration-time files.
configure
config.h
config.h.in
config.log
config.status
stamp-h1
doc/stamp-vti
doc/Doxyfile
doc/release/release.texi
# Ignore GTAGS files
GPATH
GRTAGS
GSYMS
GTAGS
# Ignore coverage and profiling files
*.gcda
*.gcno
*.gcov
gmon.out
# Others
/core
.depend
.dirstamp
prince.gdb
*.info
/_site/
release/
# Mac OS X specific
*~
*.o
.DS_Store
.deps
Makefile
Makefile.in
# Local Variables:
# mode: conf-space
# End: