Blame


1 dd038bc6 2021-09-21 thomas.ad bin_PROGRAMS = got
2 dd038bc6 2021-09-21 thomas.ad
3 0ca5b679 2021-10-09 thomas include $(top_builddir)/Makefile.common
4 0ca5b679 2021-10-09 thomas
5 dd038bc6 2021-09-21 thomas.ad got_SOURCES = got.c \
6 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/blame.c \
7 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/commit_graph.c \
8 eb427b1c 2022-07-03 thomas $(top_srcdir)/lib/date.c \
9 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/delta.c \
10 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff.c \
11 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diffreg.c \
12 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/error.c \
13 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/fileindex.c \
14 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object.c \
15 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_cache.c \
16 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_idset.c \
17 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_parse.c \
18 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/opentemp.c \
19 973f3f6e 2022-03-07 thomas $(top_srcdir)/lib/patch.c \
20 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/path.c \
21 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/pack.c \
22 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/privsep.c \
23 8c0fc380 2022-01-05 thomas $(top_srcdir)/lib/ratelimit.c \
24 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/reference.c \
25 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/repository.c \
26 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/sha1.c \
27 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/worktree.c \
28 2f6f8179 2021-11-20 thomas $(top_srcdir)/lib/worktree_open.c \
29 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/inflate.c \
30 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/buf.c \
31 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/rcsutil.c \
32 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff3.c \
33 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/lockfile.c \
34 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/deflate.c \
35 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_create.c \
36 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/delta_cache.c \
37 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/fetch.c \
38 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/gotconfig.c \
39 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_main.c \
40 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_atomize_text.c \
41 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_myers.c \
42 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_output.c \
43 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_output_plain.c \
44 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_output_unidiff.c \
45 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_output_edscript.c \
46 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_patience.c \
47 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/send.c \
48 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/deltify.c \
49 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/pack_create.c \
50 b347007e 2021-10-15 thomas $(top_srcdir)/lib/dial.c \
51 b347007e 2021-10-15 thomas $(top_srcdir)/lib/bloom.c \
52 eb427b1c 2022-07-03 thomas $(top_srcdir)/lib/murmurhash2.c \
53 eb427b1c 2022-07-03 thomas $(top_srcdir)/lib/sigs.c
54 dd038bc6 2021-09-21 thomas.ad
55 dd514345 2021-09-21 thomas.ad EXTRA_DIST = $(top_srcdir)/compat/*.[ch] \
56 dd514345 2021-09-21 thomas.ad $(top_srcdir)/lib/*.[ch] \
57 dd514345 2021-09-21 thomas.ad $(top_srcdir)/include/*.[ch] \
58 dd514345 2021-09-21 thomas.ad got.1 got.conf.5 git-repository.5 got-worktree.5
59 dd514345 2021-09-21 thomas.ad
60 dd038bc6 2021-09-21 thomas.ad got_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
61 dd038bc6 2021-09-21 thomas.ad
62 3c9bae70 2021-09-22 thomas.ad man1_MANS = got.1
63 3c9bae70 2021-09-22 thomas.ad man5_MANS = got.conf.5 git-repository.5 got-worktree.5
64 dd038bc6 2021-09-21 thomas.ad
65 b347007e 2021-10-15 thomas LDADD = -L$(top_builddir)/compat -lopenbsd-compat -lm
66 92a9e85d 2021-09-24 thomas if HOST_FREEBSD
67 92a9e85d 2021-09-24 thomas LDADD += -lmd
68 92a9e85d 2021-09-24 thomas endif