Blame


1 b7eff127 2023-07-10 thomas sbin_PROGRAMS = cvg
2 b7eff127 2023-07-10 thomas
3 b7eff127 2023-07-10 thomas include $(top_builddir)/Makefile.common
4 b7eff127 2023-07-10 thomas
5 b2287bd2 2023-07-12 thomas cvg_SOURCES = cvg.c \
6 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/blame.c \
7 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/bloom.c \
8 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/buf.c \
9 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/commit_graph.c \
10 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/date.c \
11 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/deflate.c \
12 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/delta.c \
13 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/delta_cache.c \
14 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/deltify.c \
15 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/dial.c \
16 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/diff.c \
17 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/diff3.c \
18 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/diff_atomize_text.c \
19 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/diff_main.c \
20 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/diff_myers.c \
21 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/diff_output.c \
22 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/diff_output_edscript.c \
23 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/diff_output_plain.c \
24 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/diff_output_unidiff.c \
25 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/diff_patience.c \
26 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/diffreg.c \
27 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/error.c \
28 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/fetch.c \
29 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/fileindex.c \
30 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/gotconfig.c \
31 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/hash.c \
32 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/inflate.c \
33 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/lockfile.c \
34 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/murmurhash2.c \
35 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/object.c \
36 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/object_cache.c \
37 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/object_create.c \
38 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/object_idset.c \
39 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/object_open_privsep.c \
40 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/object_parse.c \
41 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/object_qid.c \
42 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/opentemp.c \
43 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/pack.c \
44 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/pack_create.c \
45 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/pack_create_privsep.c \
46 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/pollfd.c \
47 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/patch.c \
48 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/path.c \
49 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/privsep.c \
50 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/ratelimit.c \
51 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/rcsutil.c \
52 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/read_gitconfig_privsep.c \
53 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/read_gotconfig_privsep.c \
54 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/reference.c \
55 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/reference_parse.c \
56 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/repository.c \
57 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/send.c \
58 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/sigs.c \
59 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/worktree.c \
60 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/worktree_cvg.c \
61 b7eff127 2023-07-10 thomas $(top_srcdir)/lib/worktree_open.c
62 b7eff127 2023-07-10 thomas
63 b7eff127 2023-07-10 thomas cvg_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
64 b7eff127 2023-07-10 thomas EXTRA_DIST = cvg.1
65 b7eff127 2023-07-10 thomas
66 b7eff127 2023-07-10 thomas man1_MANS = cvg.1
67 b7eff127 2023-07-10 thomas
68 b7eff127 2023-07-10 thomas LDADD = -L$(top_builddir)/compat \
69 b7eff127 2023-07-10 thomas -lopenbsd-compat -lm
70 b7eff127 2023-07-10 thomas LDADD += $(libbsd_LIBS) \
71 b7eff127 2023-07-10 thomas $(libevent_LIBS) \
72 b7eff127 2023-07-10 thomas $(zlib_LIBS) \
73 b7eff127 2023-07-10 thomas $(libuuid_LIBS) \
74 b7eff127 2023-07-10 thomas $(libutil_LIBS) \
75 b7eff127 2023-07-10 thomas $(libmd_LIBS)
76 b7eff127 2023-07-10 thomas if HOST_FREEBSD
77 b7eff127 2023-07-10 thomas LDADD += -lmd
78 b7eff127 2023-07-10 thomas endif
79 b7eff127 2023-07-10 thomas
80 b7eff127 2023-07-10 thomas AM_CPPFLAGS += $(libbsd_CFLAGS) $(libevent_CFLAGS) $(zlib_CFLAGS) \
81 b7eff127 2023-07-10 thomas $(libuuid_CFLAGS) $(libmd_CFLAGS)