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