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