Blame


1 dd038bc6 2021-09-21 thomas.ad bin_PROGRAMS = tog
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 tog_SOURCES = tog.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 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/delta.c \
9 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff.c \
10 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diffreg.c \
11 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/error.c \
12 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/fileindex.c \
13 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object.c \
14 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_cache.c \
15 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_idset.c \
16 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_parse.c \
17 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/opentemp.c \
18 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/path.c \
19 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/pack.c \
20 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/privsep.c \
21 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/reference.c \
22 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/repository.c \
23 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/sha1.c \
24 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/worktree.c \
25 2f6f8179 2021-11-20 thomas $(top_srcdir)/lib/worktree_open.c \
26 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/inflate.c \
27 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/buf.c \
28 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/rcsutil.c \
29 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff3.c \
30 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/lockfile.c \
31 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/deflate.c \
32 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_create.c \
33 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/delta_cache.c \
34 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/fetch.c \
35 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/gotconfig.c \
36 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_main.c \
37 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_atomize_text.c \
38 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_myers.c \
39 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_output.c \
40 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_output_plain.c \
41 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_output_unidiff.c \
42 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_output_edscript.c \
43 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff_patience.c \
44 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/utf8.c \
45 b347007e 2021-10-15 thomas $(top_srcdir)/lib/dial.c \
46 b347007e 2021-10-15 thomas $(top_srcdir)/lib/bloom.c \
47 eb427b1c 2022-07-03 thomas $(top_srcdir)/lib/murmurhash2.c \
48 eb427b1c 2022-07-03 thomas $(top_srcdir)/lib/date.c \
49 eb427b1c 2022-07-03 thomas $(top_srcdir)/lib/sigs.c
50 dd038bc6 2021-09-21 thomas.ad
51 dd038bc6 2021-09-21 thomas.ad tog_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
52 dd038bc6 2021-09-21 thomas.ad
53 dd038bc6 2021-09-21 thomas.ad man1_MANS = tog.1
54 dd038bc6 2021-09-21 thomas.ad
55 dd514345 2021-09-21 thomas.ad EXTRA_DIST = tog.1
56 dd514345 2021-09-21 thomas.ad
57 b347007e 2021-10-15 thomas LDADD = -L$(top_builddir)/compat -lopenbsd-compat -lpthread -lm
58 92a9e85d 2021-09-24 thomas if HOST_FREEBSD
59 92a9e85d 2021-09-24 thomas LDADD += -lmd
60 92a9e85d 2021-09-24 thomas endif