Blame


1 dd038bc6 2021-09-21 thomas.ad bin_PROGRAMS = tog
2 dd038bc6 2021-09-21 thomas.ad
3 dd038bc6 2021-09-21 thomas.ad tog_SOURCES = tog.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/utf8.c \
42 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/dial.c
43 dd038bc6 2021-09-21 thomas.ad
44 dd038bc6 2021-09-21 thomas.ad tog_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
45 dd038bc6 2021-09-21 thomas.ad
46 dd038bc6 2021-09-21 thomas.ad man1_MANS = tog.1
47 dd038bc6 2021-09-21 thomas.ad
48 dd514345 2021-09-21 thomas.ad EXTRA_DIST = tog.1
49 dd514345 2021-09-21 thomas.ad
50 dd038bc6 2021-09-21 thomas.ad AM_CPPFLAGS += -DGOT_VERSION='"@VERSION@"' \
51 dd038bc6 2021-09-21 thomas.ad -DGOT_VERSION_NUMBER='"@VERSION@"' \
52 0130fe58 2021-09-21 thomas.ad -DGOT_LIBEXECDIR="${bindir}" \
53 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir) \
54 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir)/compat \
55 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir)/lib \
56 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir)/include \
57 dd038bc6 2021-09-21 thomas.ad -I.
58 dd038bc6 2021-09-21 thomas.ad
59 acf52a76 2021-09-21 thomas.ad LDADD = -L$(top_builddir)/compat -lopenbsd-compat -lpthread
60 92a9e85d 2021-09-24 thomas if HOST_FREEBSD
61 92a9e85d 2021-09-24 thomas LDADD += -lmd
62 92a9e85d 2021-09-24 thomas endif