Blame


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