Blame


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