]> www.ginac.de Git - cln.git/blob - .gitignore
64-bit mingw port: Use intptr_t, not long, to guarantee alignment.
[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/host-cpu-c-abi.m4
29 /m4/lib-ld.m4
30 /m4/lib-link.m4
31 /m4/lib-prefix.m4
32 /m4/libtool.m4
33 /m4/ltoptions.m4
34 /m4/ltsugar.m4
35 /m4/ltversion.m4
36 /m4/lt~obsolete.m4
37
38 # Files generated by the autotools:
39 /aclocal.m4
40 /configure
41 /Makefile.in
42 /autoconf/cl_config.h.in
43 /benchmarks/Makefile.in
44 /doc/Makefile.in
45 /examples/Makefile.in
46 /src/Makefile.in
47 /tests/Makefile.in
48
49 # ---------- "make maintainer-clean" gets you here ----------
50
51 # Files generated by "make" and distributed
52 # (i.e. kept by "make distclean")
53 /doc/cln.info
54
55 # ---------- "make distclean" ought to get you here ----------
56
57 # Directories generated by "make" and mistakenly distributed
58 # (i.e. mistakenly kept by "make distclean"):
59 /autom4te.cache/
60
61 # ---------- "make distclean" gets you here ----------
62
63 # Files generated by "configure" and not distributed
64 # (i.e. erased by "make distclean"):
65 /config.log
66 /config.status
67 # Files created by "config.status":
68 /Makefile
69 /cln.pc
70 /cln.spec
71 /libtool
72 /autoconf/cl_config.h
73 /autoconf/stamp-h?
74 /benchmarks/Makefile
75 /doc/Makefile
76 /examples/Makefile
77 /include/cln/config.h
78 /include/cln/floatparam.h
79 /include/cln/host_cpu.h
80 /include/cln/intparam.h
81 /include/cln/stamp-h?
82 /include/cln/version.h
83 /src/Makefile
84 /src/base/cl_base_config.h
85 /src/base/cl_gmpconfig.h
86 /src/base/stamp-h?
87 /src/timing/cl_t_config.h
88 /src/timing/stamp-h?
89 /tests/Makefile
90 # Files created by "make":
91 /src/base/digitseq/cl_asm.S
92 /src/polynomial/elem/cl_asm_GF2.S
93
94 # Directories generated by "make" and not distributed
95 # (i.e. erased by "make distclean"):
96 .deps/
97
98 # Files generated by "make" and not distributed
99 # (i.e. erased by "make distclean"):
100 .dirstamp
101
102 # ---------- "make clean" gets you here ----------
103
104 # Directories generated by "make" and erased by "make clean":
105 /benchmarks/**/.libs/
106 /examples/**/.libs/
107 /src/**/.libs/
108 /tests/**/.libs/
109
110 # Files generated by "make" and erased by "make clean"
111 # (see CLEANFILES in Makefile.am):
112 /src/libcln.la
113 # Executables generated by "make":
114 /benchmarks/timebench1
115 /benchmarks/timebench1.exe
116 /benchmarks/timebench2a
117 /benchmarks/timebench2a.exe
118 /benchmarks/timebench2ap
119 /benchmarks/timebench2ap.exe
120 /benchmarks/timebench2b
121 /benchmarks/timebench2b.exe
122 /examples/contfrac
123 /examples/contfrac.exe
124 /examples/e
125 /examples/e.exe
126 /examples/fibonacci
127 /examples/fibonacci.exe
128 /examples/legendre
129 /examples/legendre.exe
130 /examples/lucaslehmer
131 /examples/lucaslehmer.exe
132 /examples/nextprime
133 /examples/nextprime.exe
134 /examples/perfnum
135 /examples/perfnum.exe
136 /examples/pi
137 /examples/pi.exe
138 /tests/exam
139 /tests/exam.exe
140 /tests/tests
141 /tests/tests.exe
142
143 # ---------- "make mostlyclean" gets you here ----------
144
145 # Files generated by "make" and erased by "make mostlyclean"
146 # (see MOSTLYCLEANFILES in Makefile.am and, if present, Makefile.gnulib):
147 core
148 *.stackdump
149 # Object files.
150 *.o
151 *.lo
152 # gcov data files.
153 *.gcno
154 *.gcda
155 # Logs generated by Automake:
156 /tests/*.log
157 /tests/*.trs
158
159 # ---------- "make all check" gets you here ----------
160
161 # Patterns for all subdirectories: all kinds of automatic backup files.
162 *.orig
163 *.rej
164 *~
165 *.kate-swp
166 .#*
167 \#*#