Blame


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