Blame


1 36d7ed1e 2023-11-30 thomas # When creating a distribution tarball, make sure we enable all current
2 36d7ed1e 2023-11-30 thomas # configure flags so that no files are missing. This is irrespective of
3 36d7ed1e 2023-11-30 thomas # whether the end-user will enable this; this step is here so that all the
4 36d7ed1e 2023-11-30 thomas # relevant files are included in the distribution.
5 e9ac8ffb 2024-04-26 thomas.ad AM_DISTCHECK_CONFIGURE_FLAGS= --enable-cvg
6 36d7ed1e 2023-11-30 thomas
7 e9ac8ffb 2024-04-26 thomas.ad SUBDIRS = compat \
8 e9ac8ffb 2024-04-26 thomas.ad gitwrapper \
9 e9ac8ffb 2024-04-26 thomas.ad got \
10 e9ac8ffb 2024-04-26 thomas.ad gotadmin \
11 e9ac8ffb 2024-04-26 thomas.ad gotctl \
12 e9ac8ffb 2024-04-26 thomas.ad gotd \
13 e9ac8ffb 2024-04-26 thomas.ad gotsh \
14 e9ac8ffb 2024-04-26 thomas.ad gotwebd \
15 e9ac8ffb 2024-04-26 thomas.ad libexec \
16 e9ac8ffb 2024-04-26 thomas.ad template \
17 e9ac8ffb 2024-04-26 thomas.ad tog
18 e34f3591 2023-09-24 thomas
19 e34f3591 2023-09-24 thomas # -portable: re-enable once upstream is happy: cvg
20 cb11302c 2022-12-30 thomas # TODO: gotd gotsh template
21 2f1efc18 2023-08-29 thomas
22 a77903c9 2023-09-24 thomas if CVG_ENABLED
23 a77903c9 2023-09-24 thomas SUBDIRS += cvg
24 2f1efc18 2023-08-29 thomas endif
25 dd038bc6 2021-09-21 thomas.ad
26 0ca5b679 2021-10-09 thomas include $(top_builddir)/Makefile.common
27 0ca5b679 2021-10-09 thomas
28 ee73709b 2024-04-25 thomas.ad EXTRA_DIST = CHANGES \
29 ee73709b 2024-04-25 thomas.ad CHANGELOG \
30 ee73709b 2024-04-25 thomas.ad LICENCE \
31 ee73709b 2024-04-25 thomas.ad README.portable \
32 ee73709b 2024-04-25 thomas.ad regress \
33 ee73709b 2024-04-25 thomas.ad util/got-portable-ver.sh
34 0b2bb718 2021-09-21 thomas.ad
35 dd038bc6 2021-09-21 thomas.ad LDADD = $(LIBOBJS)
36 5a7ef102 2021-10-09 thomas if HOST_FREEBSD
37 5a7ef102 2021-10-09 thomas LDADD += -lmd
38 5a7ef102 2021-10-09 thomas LIBS += -lmd
39 5a7ef102 2021-10-09 thomas endif
40 dd038bc6 2021-09-21 thomas.ad
41 5007bd0d 2023-04-14 thomas LIBS += -lm $(zlib_LIBS) $(libbsd_LIBS) $(libmd_LIBS)
42 5007bd0d 2023-04-14 thomas AM_CPPFLAGS += $(libbsd_CFLAGS) $(libmd_CFLAGS)
43 cb3c9f1c 2022-10-13 thomas
44 09e05ed5 2023-03-08 thomas TEST_TARGETS=compat regress-delta regress-deltify regress-fetch regress-idset \
45 28c54b82 2023-04-14 thomas regress-path regress-tog regress-cmdline
46 5a7ef102 2021-10-09 thomas GOT_TEST_ROOT=/tmp
47 5a7ef102 2021-10-09 thomas
48 09e05ed5 2023-03-08 thomas .PHONY: compat
49 09e05ed5 2023-03-08 thomas compat:
50 09e05ed5 2023-03-08 thomas $(MAKE) -C compat
51 09e05ed5 2023-03-08 thomas
52 5a7ef102 2021-10-09 thomas tests: $(TEST_TARGETS)
53 5a7ef102 2021-10-09 thomas
54 5a7ef102 2021-10-09 thomas regress-cmdline:
55 1ff9fea4 2021-11-23 thomas (export PLATFORM=@PLATFORM@; \
56 1ff9fea4 2021-11-23 thomas cd $(top_builddir)/regress/cmdline || exit $$?; \
57 3c79ece5 2022-06-23 op ./checkout.sh -q -r "$(GOT_TEST_ROOT)"; \
58 3c79ece5 2022-06-23 op ./update.sh -q -r "$(GOT_TEST_ROOT)"; \
59 3c79ece5 2022-06-23 op ./status.sh -q -r "$(GOT_TEST_ROOT)"; \
60 3c79ece5 2022-06-23 op ./log.sh -q -r "$(GOT_TEST_ROOT)"; \
61 3c79ece5 2022-06-23 op ./add.sh -q -r "$(GOT_TEST_ROOT)"; \
62 3c79ece5 2022-06-23 op ./rm.sh -q -r "$(GOT_TEST_ROOT)"; \
63 3c79ece5 2022-06-23 op ./diff.sh -q -r "$(GOT_TEST_ROOT)"; \
64 3c79ece5 2022-06-23 op ./blame.sh -q -r "$(GOT_TEST_ROOT)"; \
65 3c79ece5 2022-06-23 op ./branch.sh -q -r "$(GOT_TEST_ROOT)"; \
66 3c79ece5 2022-06-23 op ./tag.sh -q -r "$(GOT_TEST_ROOT)"; \
67 3c79ece5 2022-06-23 op ./ref.sh -q -r "$(GOT_TEST_ROOT)"; \
68 3c79ece5 2022-06-23 op ./commit.sh -q -r "$(GOT_TEST_ROOT)"; \
69 3c79ece5 2022-06-23 op ./revert.sh -q -r "$(GOT_TEST_ROOT)"; \
70 3c79ece5 2022-06-23 op ./cherrypick.sh -q -r "$(GOT_TEST_ROOT)"; \
71 3c79ece5 2022-06-23 op ./backout.sh -q -r "$(GOT_TEST_ROOT)"; \
72 3c79ece5 2022-06-23 op ./rebase.sh -q -r "$(GOT_TEST_ROOT)"; \
73 3c79ece5 2022-06-23 op ./import.sh -q -r "$(GOT_TEST_ROOT)"; \
74 3c79ece5 2022-06-23 op ./histedit.sh -q -r "$(GOT_TEST_ROOT)"; \
75 3c79ece5 2022-06-23 op ./integrate.sh -q -r "$(GOT_TEST_ROOT)"; \
76 3c79ece5 2022-06-23 op ./merge.sh -q -r "$(GOT_TEST_ROOT)"; \
77 3c79ece5 2022-06-23 op ./stage.sh -q -r "$(GOT_TEST_ROOT)"; \
78 3c79ece5 2022-06-23 op ./unstage.sh -q -r "$(GOT_TEST_ROOT)"; \
79 3c79ece5 2022-06-23 op ./cat.sh -q -r "$(GOT_TEST_ROOT)"; \
80 3c79ece5 2022-06-23 op ./clone.sh -q -r "$(GOT_TEST_ROOT)"; \
81 3c79ece5 2022-06-23 op ./fetch.sh -q -r "$(GOT_TEST_ROOT)"; \
82 3c79ece5 2022-06-23 op ./send.sh -q -r "$(GOT_TEST_ROOT)"; \
83 3c79ece5 2022-06-23 op ./tree.sh -q -r "$(GOT_TEST_ROOT)"; \
84 d5df63da 2022-03-09 thomas ./patch.sh -q -r "$(GOT_TEST_ROOT)" \
85 3c79ece5 2022-06-23 op ./pack.sh -q -r "$(GOT_TEST_ROOT)"; \
86 3c79ece5 2022-06-23 op ./cleanup.sh -q -r "$(GOT_TEST_ROOT)")
87 5a7ef102 2021-10-09 thomas
88 5a7ef102 2021-10-09 thomas regress-delta:
89 5a7ef102 2021-10-09 thomas $(CC) $(DEFS) $(AM_CFLAGS) $(AM_CPPFLAGS) \
90 5a7ef102 2021-10-09 thomas -o $(top_builddir)/regress/delta/delta_test \
91 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/bloom.c \
92 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/buf.c \
93 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/date.c \
94 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/deflate.c \
95 5a7ef102 2021-10-09 thomas $(top_srcdir)/lib/delta.c \
96 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/delta_cache.c \
97 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/deltify.c \
98 5a7ef102 2021-10-09 thomas $(top_srcdir)/lib/error.c \
99 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/gotconfig.c \
100 54bac5ec 2023-02-23 thomas $(top_srcdir)/lib/hash.c \
101 5a7ef102 2021-10-09 thomas $(top_srcdir)/lib/inflate.c \
102 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/lockfile.c \
103 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/murmurhash2.c \
104 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object.c \
105 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_cache.c \
106 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_create.c \
107 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_idset.c \
108 b61ceafc 2022-10-13 thomas $(top_srcdir)/lib/object_open_privsep.c \
109 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_parse.c \
110 b74f20ba 2023-04-22 thomas $(top_srcdir)/lib/object_qid.c \
111 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/opentemp.c \
112 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/pack.c \
113 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/pack_create.c \
114 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/pack_create_privsep.c \
115 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/path.c \
116 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/pollfd.c \
117 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/privsep.c \
118 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/ratelimit.c \
119 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/read_gitconfig_privsep.c \
120 400c1baa 2022-10-13 thomas $(top_srcdir)/lib/read_gotconfig_privsep.c \
121 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/reference.c \
122 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/reference_parse.c \
123 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/repository.c \
124 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/sigs.c \
125 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/regress/delta/delta_test.c \
126 5a7ef102 2021-10-09 thomas -L$(top_builddir)/compat -lopenbsd-compat $(LIBS) && \
127 5a7ef102 2021-10-09 thomas $(top_builddir)/regress/delta/delta_test
128 5a7ef102 2021-10-09 thomas
129 5a7ef102 2021-10-09 thomas regress-deltify:
130 5a7ef102 2021-10-09 thomas $(CC) $(DEFS) $(AM_CFLAGS) $(AM_CPPFLAGS) \
131 5a7ef102 2021-10-09 thomas -o $(top_builddir)/regress/deltify/deltify_test \
132 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/bloom.c \
133 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/buf.c \
134 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/date.c \
135 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/deflate.c \
136 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/delta.c \
137 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/delta_cache.c \
138 5a7ef102 2021-10-09 thomas $(top_srcdir)/lib/deltify.c \
139 5a7ef102 2021-10-09 thomas $(top_srcdir)/lib/error.c \
140 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/gotconfig.c \
141 54bac5ec 2023-02-23 thomas $(top_srcdir)/lib/hash.c \
142 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/inflate.c \
143 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/lockfile.c \
144 ebdfb05b 2022-02-12 thomas $(top_srcdir)/lib/murmurhash2.c \
145 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object.c \
146 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_cache.c \
147 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_create.c \
148 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_idset.c \
149 b61ceafc 2022-10-13 thomas $(top_srcdir)/lib/object_open_privsep.c \
150 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_parse.c \
151 b74f20ba 2023-04-22 thomas $(top_srcdir)/lib/object_qid.c \
152 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/opentemp.c \
153 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/pack.c \
154 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/pack_create.c \
155 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/pack_create_privsep.c \
156 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/path.c \
157 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/pollfd.c \
158 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/privsep.c \
159 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/ratelimit.c \
160 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/read_gitconfig_privsep.c \
161 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/read_gotconfig_privsep.c \
162 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/reference.c \
163 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/reference_parse.c \
164 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/repository.c \
165 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/sigs.c \
166 fc16ecdf 2022-10-17 thomas $(top_srcdir)/regress/deltify/deltify_test.c \
167 5a7ef102 2021-10-09 thomas -L$(top_builddir)/compat -lopenbsd-compat $(LIBS) && \
168 5a7ef102 2021-10-09 thomas $(top_builddir)/regress/deltify/deltify_test
169 5a7ef102 2021-10-09 thomas
170 5a7ef102 2021-10-09 thomas regress-fetch:
171 5a7ef102 2021-10-09 thomas $(CC) $(DEFS) $(AM_CFLAGS) $(AM_CPPFLAGS) \
172 5a7ef102 2021-10-09 thomas -o $(top_builddir)/regress/fetch/fetch_test \
173 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/bloom.c \
174 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/buf.c \
175 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/date.c \
176 5a7ef102 2021-10-09 thomas $(top_srcdir)/lib/deflate.c \
177 5a7ef102 2021-10-09 thomas $(top_srcdir)/lib/delta.c \
178 5a7ef102 2021-10-09 thomas $(top_srcdir)/lib/delta_cache.c \
179 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/deltify.c \
180 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/dial.c \
181 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/error.c \
182 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/fetch.c \
183 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/gotconfig.c \
184 54bac5ec 2023-02-23 thomas $(top_srcdir)/lib/hash.c \
185 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/inflate.c \
186 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/lockfile.c \
187 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/murmurhash2.c \
188 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object.c \
189 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_cache.c \
190 5a7ef102 2021-10-09 thomas $(top_srcdir)/lib/object_create.c \
191 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_idset.c \
192 b61ceafc 2022-10-13 thomas $(top_srcdir)/lib/object_open_privsep.c \
193 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_parse.c \
194 b74f20ba 2023-04-22 thomas $(top_srcdir)/lib/object_qid.c \
195 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/opentemp.c \
196 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/pack.c \
197 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/pack_create.c \
198 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/pack_create_privsep.c \
199 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/path.c \
200 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/pollfd.c \
201 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/privsep.c \
202 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/ratelimit.c \
203 d348087d 2022-10-13 thomas $(top_srcdir)/lib/read_gitconfig_privsep.c \
204 400c1baa 2022-10-13 thomas $(top_srcdir)/lib/read_gotconfig_privsep.c \
205 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/reference.c \
206 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/reference_parse.c \
207 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/repository.c \
208 1d7053d6 2022-07-06 thomas $(top_srcdir)/lib/sigs.c \
209 fc16ecdf 2022-10-17 thomas $(top_srcdir)/regress/fetch/fetch_test.c \
210 37fdd5cc 2021-10-15 thomas -L$(top_builddir)/compat -lopenbsd-compat $(LIBS) -lm && \
211 5a7ef102 2021-10-09 thomas $(top_builddir)/regress/fetch/fetch_test
212 5a7ef102 2021-10-09 thomas
213 5a7ef102 2021-10-09 thomas regress-idset:
214 5a7ef102 2021-10-09 thomas $(CC) $(DEFS) $(AM_CFLAGS) $(AM_CPPFLAGS) \
215 5a7ef102 2021-10-09 thomas -o $(top_builddir)/regress/idset/idset_test \
216 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/bloom.c \
217 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/buf.c \
218 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/date.c \
219 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/deflate.c \
220 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/delta.c \
221 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/delta_cache.c \
222 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/deltify.c \
223 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/dial.c \
224 5a7ef102 2021-10-09 thomas $(top_srcdir)/lib/error.c \
225 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/fetch.c \
226 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/gotconfig.c \
227 54bac5ec 2023-02-23 thomas $(top_srcdir)/lib/hash.c \
228 5a7ef102 2021-10-09 thomas $(top_srcdir)/lib/inflate.c \
229 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/lockfile.c \
230 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/murmurhash2.c \
231 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object.c \
232 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_cache.c \
233 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_create.c \
234 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_idset.c \
235 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_open_privsep.c \
236 5a7ef102 2021-10-09 thomas $(top_srcdir)/lib/object_parse.c \
237 b74f20ba 2023-04-22 thomas $(top_srcdir)/lib/object_qid.c \
238 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/opentemp.c \
239 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/pack.c \
240 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/pack_create.c \
241 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/pack_create_privsep.c \
242 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/path.c \
243 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/pollfd.c \
244 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/privsep.c \
245 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/ratelimit.c \
246 d348087d 2022-10-13 thomas $(top_srcdir)/lib/read_gitconfig_privsep.c \
247 400c1baa 2022-10-13 thomas $(top_srcdir)/lib/read_gotconfig_privsep.c \
248 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/reference.c \
249 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/reference_parse.c \
250 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/repository.c \
251 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/sigs.c \
252 fc16ecdf 2022-10-17 thomas $(top_srcdir)/regress/idset/idset_test.c \
253 5a7ef102 2021-10-09 thomas -L$(top_builddir)/compat -lopenbsd-compat $(LIBS) && \
254 5a7ef102 2021-10-09 thomas $(top_builddir)/regress/idset/idset_test
255 5a7ef102 2021-10-09 thomas
256 5a7ef102 2021-10-09 thomas regress-path:
257 5a7ef102 2021-10-09 thomas $(CC) $(DEFS) $(AM_CFLAGS) $(AM_CPPFLAGS) \
258 5a7ef102 2021-10-09 thomas -o $(top_builddir)/regress/path/path_test \
259 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/bloom.c \
260 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/buf.c \
261 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/date.c \
262 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/deflate.c \
263 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/delta.c \
264 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/delta_cache.c \
265 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/deltify.c \
266 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/dial.c \
267 5a7ef102 2021-10-09 thomas $(top_srcdir)/lib/error.c \
268 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/fetch.c \
269 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/gotconfig.c \
270 54bac5ec 2023-02-23 thomas $(top_srcdir)/lib/hash.c \
271 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/inflate.c \
272 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/lockfile.c \
273 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/murmurhash2.c \
274 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object.c \
275 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_cache.c \
276 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_create.c \
277 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_idset.c \
278 b61ceafc 2022-10-13 thomas $(top_srcdir)/lib/object_open_privsep.c \
279 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/object_parse.c \
280 b74f20ba 2023-04-22 thomas $(top_srcdir)/lib/object_qid.c \
281 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/opentemp.c \
282 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/pack.c \
283 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/pack_create.c \
284 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/pack_create_privsep.c \
285 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/path.c \
286 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/pollfd.c \
287 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/privsep.c \
288 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/ratelimit.c \
289 d348087d 2022-10-13 thomas $(top_srcdir)/lib/read_gitconfig_privsep.c \
290 400c1baa 2022-10-13 thomas $(top_srcdir)/lib/read_gotconfig_privsep.c \
291 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/reference.c \
292 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/reference_parse.c \
293 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/repository.c \
294 cb3c9f1c 2022-10-13 thomas $(top_srcdir)/lib/sigs.c \
295 fc16ecdf 2022-10-17 thomas $(top_srcdir)/regress/path/path_test.c \
296 5a7ef102 2021-10-09 thomas -L$(top_builddir)/compat -lopenbsd-compat $(LIBS) && \
297 5a7ef102 2021-10-09 thomas $(top_builddir)/regress/path/path_test
298 28c54b82 2023-04-14 thomas
299 28c54b82 2023-04-14 thomas regress-tog:
300 28c54b82 2023-04-14 thomas (cd $(top_builddir)/regress/tog || exit $$?; \
301 28c54b82 2023-04-14 thomas ./log.sh -q -r "$(GOT_TEST_ROOT)");