Skip to content

Commit 1549370

Browse files
committed
Add basic .gitignore file for autotools and C compiler outputs
1 parent df19712 commit 1549370

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed

.gitignore

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# vpath build directory
2+
3+
build
4+
5+
# http://www.gnu.org/software/automake
6+
7+
Makefile.in
8+
/ar-lib
9+
/mdate-sh
10+
/py-compile
11+
/test-driver
12+
/ylwrap
13+
.deps/
14+
.dirstamp
15+
16+
# http://www.gnu.org/software/autoconf
17+
18+
autom4te.cache
19+
/autoscan.log
20+
/autoscan-*.log
21+
/aclocal.m4
22+
/compile
23+
/config.guess
24+
/config.h.in
25+
/config.log
26+
/config.status
27+
/config.sub
28+
/configure
29+
/configure.scan
30+
/depcomp
31+
/install-sh
32+
/missing
33+
/stamp-h1
34+
35+
# https://www.gnu.org/software/libtool/
36+
37+
/ltmain.sh
38+
39+
# http://www.gnu.org/software/texinfo
40+
41+
/texinfo.tex
42+
43+
# http://www.gnu.org/software/m4/
44+
45+
m4/libtool.m4
46+
m4/ltoptions.m4
47+
m4/ltsugar.m4
48+
m4/ltversion.m4
49+
m4/lt~obsolete.m4
50+
51+
# Generated Makefile
52+
# (meta build system like autotools,
53+
# can automatically generate from config.status script
54+
# (which is called by configure script))
55+
Makefile
56+
57+
# Object files
58+
*.o

0 commit comments

Comments
 (0)