]> www.ginac.de Git - cln.git/blob - .gitignore
test_I_io now succeeds on native Windows.
[cln.git] / .gitignore
1 ## This file specifies the files and directories that can usually occur in a
2 ## developer build of this Git repository.
3 ##
4 ## Reference: https://git-scm.com/docs/gitignore
5 ##
6 ## When we say, "files", it actually means files and directories. By
7 ## convention, directories are marked through a trailing first and listed
8 ## first in each category.
9 ##
10 ## We don't list files that may occur in exceptional situations (such as
11 ## temporary files *.h-t), because a developer should notice when such a
12 ## file is not erased by "make mostlyclean".
13
14 # Files brought in by "automake --add-missing --copy":
15 /build-aux/compile
16 /build-aux/depcomp
17 /build-aux/install-sh
18 /build-aux/missing
19 /build-aux/test-driver
20
21 # Other files brought in by autogen.sh:
22 /build-aux/config.guess
23 /build-aux/config.sub
24 /build-aux/config.rpath
25 /build-aux/ltmain.sh
26 /build-aux/test-driver.diff
27 /build-aux/texinfo.tex
28 /m4/ax_cxx_compile_stdcxx.m4
29 /m4/host-cpu-c-abi.m4
30 /m4/lib-ld.m4
31 /m4/lib-link.m4
32 /m4/lib-prefix.m4
33 /m4/libtool.m4
34 /m4/ltoptions.m4
35 /m4/ltsugar.m4
36 /m4/ltversion.m4
37 /m4/lt~obsolete.m4
38
39 # Files generated by the autotools:
40 /aclocal.m4
41 /configure
42 /Makefile.in
43 /autoconf/cl_config.h.in
44 /benchmarks/Makefile.in
45 /doc/Makefile.in
46 /examples/Makefile.in
47 /src/Makefile.in
48 /tests/Makefile.in
49
50 # ---------- "make maintainer-clean" gets you here ----------
51
52 # Files generated by "make" and distributed
53 # (i.e. kept by "make distclean")
54 /doc/cln.info
55
56 # ---------- "make distclean" ought to get you here ----------
57
58 # Directories generated by "make" and mistakenly distributed
59 # (i.e. mistakenly kept by "make distclean"):
60 /autom4te.cache/
61
62 # ---------- "make distclean" gets you here ----------
63
64 # Files generated by "configure" and not distributed
65 # (i.e. erased by "make distclean"):
66 /config.log
67 /config.status
68 # Files created by "config.status":
69 /Makefile
70 /cln.pc
71 /cln.spec
72 /libtool
73 /autoconf/cl_config.h
74 /autoconf/stamp-h?
75 /benchmarks/Makefile
76 /doc/Makefile
77 /examples/Makefile
78 /include/cln/config.h
79 /include/cln/floatparam.h
80 /include/cln/host_cpu.h
81 /include/cln/intparam.h
82 /include/cln/stamp-h?
83 /include/cln/version.h
84 /src/Makefile
85 /src/base/cl_base_config.h
86 /src/base/cl_gmpconfig.h
87 /src/base/stamp-h?
88 /src/timing/cl_t_config.h
89 /src/timing/stamp-h?
90 /tests/Makefile
91 # Files created by "make":
92 /src/base/digitseq/cl_asm.S
93 /src/polynomial/elem/cl_asm_GF2.S
94
95 # Directories generated by "make" and not distributed
96 # (i.e. erased by "make distclean"):
97 .deps/
98
99 # Files generated by "make" and not distributed
100 # (i.e. erased by "make distclean"):
101 .dirstamp
102
103 # ---------- "make clean" gets you here ----------
104
105 # Directories generated by "make" and erased by "make clean":
106 /benchmarks/**/.libs/
107 /examples/**/.libs/
108 /src/**/.libs/
109 /tests/**/.libs/
110
111 # Files generated by "make" and erased by "make clean"
112 # (see CLEANFILES in Makefile.am):
113 /src/libcln.la
114 # Executables generated by "make":
115 /benchmarks/timebench1
116 /benchmarks/timebench1.exe
117 /benchmarks/timebench2a
118 /benchmarks/timebench2a.exe
119 /benchmarks/timebench2ap
120 /benchmarks/timebench2ap.exe
121 /benchmarks/timebench2b
122 /benchmarks/timebench2b.exe
123 /examples/contfrac
124 /examples/contfrac.exe
125 /examples/e
126 /examples/e.exe
127 /examples/fibonacci
128 /examples/fibonacci.exe
129 /examples/legendre
130 /examples/legendre.exe
131 /examples/lucaslehmer
132 /examples/lucaslehmer.exe
133 /examples/nextprime
134 /examples/nextprime.exe
135 /examples/perfnum
136 /examples/perfnum.exe
137 /examples/pi
138 /examples/pi.exe
139 /tests/exam
140 /tests/exam.exe
141 /tests/tests
142 /tests/tests.exe
143
144 # ---------- "make mostlyclean" gets you here ----------
145
146 # Files generated by "make" and erased by "make mostlyclean"
147 # (see MOSTLYCLEANFILES in Makefile.am and, if present, Makefile.gnulib):
148 core
149 *.stackdump
150 # Object files.
151 *.o
152 *.lo
153 # gcov data files.
154 *.gcno
155 *.gcda
156 # Logs generated by Automake:
157 /tests/*.log
158 /tests/*.trs
159
160 # ---------- "make all check" gets you here ----------
161
162 # Patterns for all subdirectories: all kinds of automatic backup files.
163 *.orig
164 *.rej
165 *~
166 *.kate-swp
167 .#*
168 \#*#