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 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/bloom.c \
8 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/buf.c \
9 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/commit_graph.c \
10 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/date.c \
11 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/deflate.c \
12 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/delta.c \
13 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/delta_cache.c \
14 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/dial.c \
15 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diff.c \
16 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/diff3.c \
17 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/diff_atomize_text.c \
18 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/diff_main.c \
19 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/diff_myers.c \
20 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/diff_output.c \
21 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/diff_output_edscript.c \
22 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/diff_output_plain.c \
23 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/diff_output_unidiff.c \
24 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/diff_patience.c \
25 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/diffreg.c \
26 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/error.c \
27 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/fetch.c \
28 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/fileindex.c \
29 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/gotconfig.c \
30 54bac5ec 2023-02-23 thomas $(top_srcdir)/lib/hash.c \
31 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/inflate.c \
32 6657da59 2023-07-19 thomas $(top_srcdir)/lib/keyword.c \
33 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/lockfile.c \
34 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/murmurhash2.c \
35 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object.c \
36 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_cache.c \
37 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/object_create.c \
38 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_idset.c \
39 b61ceafc 2022-10-13 thomas $(top_srcdir)/lib/object_open_privsep.c \
40 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_parse.c \
41 381ce3ea 2023-04-22 thomas $(top_srcdir)/lib/object_qid.c \
42 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/opentemp.c \
43 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/pack.c \
44 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/path.c \
45 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/pollfd.c \
46 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/privsep.c \
47 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/rcsutil.c \
48 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/read_gitconfig_privsep.c \
49 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/read_gotconfig_privsep.c \
50 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/reference.c \
51 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/reference_parse.c \
52 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/repository.c \
53 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/sigs.c \
54 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/utf8.c \
55 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/worktree.c \
56 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/worktree_open.c
57 dd038bc6 2021-09-21 thomas.ad
58 dd038bc6 2021-09-21 thomas.ad tog_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
59 dd038bc6 2021-09-21 thomas.ad
60 dd038bc6 2021-09-21 thomas.ad man1_MANS = tog.1
61 dd038bc6 2021-09-21 thomas.ad
62 dd514345 2021-09-21 thomas.ad EXTRA_DIST = tog.1
63 dd514345 2021-09-21 thomas.ad
64 b347007e 2021-10-15 thomas LDADD = -L$(top_builddir)/compat -lopenbsd-compat -lpthread -lm
65 5007bd0d 2023-04-14 thomas LDADD += $(libbsd_LIBS) $(libncurses_LIBS) $(libuuid_LIBS) $(zlib_LIBS) \
66 5007bd0d 2023-04-14 thomas $(libutil_LIBS) $(libmd_LIBS)
67 92a9e85d 2021-09-24 thomas if HOST_FREEBSD
68 92a9e85d 2021-09-24 thomas LDADD += -lmd
69 92a9e85d 2021-09-24 thomas endif
70 4fccd2fe 2023-03-08 thomas
71 5007bd0d 2023-04-14 thomas AM_CPPFLAGS += $(libbsd_CFLAGS) $(libncurses_CFLAGS) $(libuuid_CFLAGS) \
72 5007bd0d 2023-04-14 thomas $(libmd_CFLAGS)