Blame


1 2f1efc18 2023-08-29 thomas sbin_PROGRAMS = gotd
2 2f1efc18 2023-08-29 thomas
3 2f1efc18 2023-08-29 thomas include $(top_builddir)/Makefile.common
4 2f1efc18 2023-08-29 thomas
5 2f1efc18 2023-08-29 thomas gotd_SOURCES = gotd.c \
6 2f1efc18 2023-08-29 thomas imsg.c \
7 2f1efc18 2023-08-29 thomas log.c \
8 2f1efc18 2023-08-29 thomas parse.y \
9 2f1efc18 2023-08-29 thomas privsep_stub.c \
10 2f1efc18 2023-08-29 thomas repo_imsg.c \
11 2f1efc18 2023-08-29 thomas repo_read.c \
12 2f1efc18 2023-08-29 thomas repo_write.c \
13 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/bloom.c \
14 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/buf.c \
15 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/date.c \
16 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/deflate.c \
17 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/delta.c \
18 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/delta_cache.c \
19 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/deltify.c \
20 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/error.c \
21 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/gitconfig.c \
22 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/gotconfig.c \
23 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/inflate.c \
24 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/lockfile.c \
25 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/murmurhash2.c \
26 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/object.c \
27 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/object_cache.c \
28 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/object_create.c \
29 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/object_idset.c \
30 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/object_open_io.c \
31 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/object_parse.c \
32 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/opentemp.c \
33 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/pack.c \
34 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/pack_create.c \
35 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/pack_create_io.c \
36 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/pack_index.c \
37 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/path.c \
38 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/pollfd.c \
39 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/ratelimit.c \
40 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/read_gitconfig.c \
41 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/read_gotconfig.c \
42 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/reference.c \
43 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/reference_parse.c \
44 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/repository.c \
45 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/sha1.c \
46 2f1efc18 2023-08-29 thomas $(top_srcdir)/lib/sigs.c
47 2f1efc18 2023-08-29 thomas
48 2f1efc18 2023-08-29 thomas gotd_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
49 2f1efc18 2023-08-29 thomas EXTRA_DIST = gotd.8 gotd.conf.5
50 2f1efc18 2023-08-29 thomas
51 2f1efc18 2023-08-29 thomas man5_MANS = gotd.conf.5
52 2f1efc18 2023-08-29 thomas man8_MANS = gotd.8
53 2f1efc18 2023-08-29 thomas
54 2f1efc18 2023-08-29 thomas LDADD = -L$(top_builddir)/compat -lopenbsd-compat -lm
55 2f1efc18 2023-08-29 thomas if HOST_FREEBSD
56 2f1efc18 2023-08-29 thomas LDADD += -lmd
57 2f1efc18 2023-08-29 thomas endif