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 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/bloom.c \
8 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/buf.c \
9 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/commit_graph.c \
10 eb427b1c 2022-07-03 thomas $(top_srcdir)/lib/date.c \
11 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/deflate.c \
12 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/delta.c \
13 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/delta_cache.c \
14 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/deltify.c \
15 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/dial.c \
16 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff.c \
17 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/diff3.c \
18 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/diff_atomize_text.c \
19 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/diff_main.c \
20 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/diff_myers.c \
21 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/diff_output.c \
22 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/diff_output_edscript.c \
23 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/diff_output_plain.c \
24 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/diff_output_unidiff.c \
25 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/diff_patience.c \
26 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diffreg.c \
27 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/error.c \
28 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/fetch.c \
29 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/fileindex.c \
30 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/gotconfig.c \
31 54bac5ec 2023-02-23 thomas $(top_srcdir)/lib/hash.c \
32 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/inflate.c \
33 481d9ea6 2023-07-17 thomas $(top_srcdir)/lib/keyword.c \
34 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/lockfile.c \
35 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/murmurhash2.c \
36 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object.c \
37 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_cache.c \
38 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/object_create.c \
39 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_idset.c \
40 b61ceafc 2022-10-13 thomas $(top_srcdir)/lib/object_open_privsep.c \
41 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_parse.c \
42 381ce3ea 2023-04-22 thomas $(top_srcdir)/lib/object_qid.c \
43 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/opentemp.c \
44 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/pack.c \
45 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/pack_create.c \
46 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/pack_create_privsep.c \
47 973f3f6e 2022-03-07 thomas $(top_srcdir)/lib/patch.c \
48 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/path.c \
49 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/pollfd.c \
50 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/privsep.c \
51 8c0fc380 2022-01-05 thomas $(top_srcdir)/lib/ratelimit.c \
52 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/rcsutil.c \
53 d348087d 2022-10-13 thomas $(top_srcdir)/lib/read_gitconfig_privsep.c \
54 400c1baa 2022-10-13 thomas $(top_srcdir)/lib/read_gotconfig_privsep.c \
55 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/reference.c \
56 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/reference_parse.c \
57 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/repository.c \
58 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/send.c \
59 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/sigs.c \
60 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/worktree.c \
61 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/worktree_open.c
62 dd038bc6 2021-09-21 thomas.ad
63 dd514345 2021-09-21 thomas.ad EXTRA_DIST = $(top_srcdir)/compat/*.[ch] \
64 dd514345 2021-09-21 thomas.ad $(top_srcdir)/lib/*.[ch] \
65 dd514345 2021-09-21 thomas.ad $(top_srcdir)/include/*.[ch] \
66 dd514345 2021-09-21 thomas.ad got.1 got.conf.5 git-repository.5 got-worktree.5
67 dd514345 2021-09-21 thomas.ad
68 dd038bc6 2021-09-21 thomas.ad got_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
69 dd038bc6 2021-09-21 thomas.ad
70 3c9bae70 2021-09-22 thomas.ad man1_MANS = got.1
71 3c9bae70 2021-09-22 thomas.ad man5_MANS = got.conf.5 git-repository.5 got-worktree.5
72 dd038bc6 2021-09-21 thomas.ad
73 b347007e 2021-10-15 thomas LDADD = -L$(top_builddir)/compat -lopenbsd-compat -lm
74 4fccd2fe 2023-03-08 thomas LDADD += $(libuuid_LIBS) \
75 4fccd2fe 2023-03-08 thomas $(zlib_LIBS) \
76 4fccd2fe 2023-03-08 thomas $(libbsd_LIBS) \
77 5007bd0d 2023-04-14 thomas $(libutil_LIBS) \
78 5007bd0d 2023-04-14 thomas $(libmd_LIBS)
79 92a9e85d 2021-09-24 thomas if HOST_FREEBSD
80 92a9e85d 2021-09-24 thomas LDADD += -lmd
81 92a9e85d 2021-09-24 thomas endif
82 4fccd2fe 2023-03-08 thomas
83 4fccd2fe 2023-03-08 thomas AM_CPPFLAGS += $(libuuid_CFLAGS) \
84 4fccd2fe 2023-03-08 thomas $(zlib_CFLAGS) \
85 5007bd0d 2023-04-14 thomas $(libbsd_CFLAGS) \
86 5007bd0d 2023-04-14 thomas $(libmd_CLFAGS)