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