Blame


1 6b78ad28 2021-09-25 thomas libexec_PROGRAMS = got-send-pack
2 0ca5b679 2021-10-09 thomas
3 0ca5b679 2021-10-09 thomas include $(top_builddir)/Makefile.common
4 0ca5b679 2021-10-09 thomas
5 dd038bc6 2021-09-21 thomas.ad got_send_pack_SOURCES = \
6 dd038bc6 2021-09-21 thomas.ad got-send-pack.c \
7 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/error.c \
8 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/inflate.c \
9 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_parse.c \
10 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/path.c \
11 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/privsep.c \
12 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/sha1.c \
13 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/pkt.c \
14 db65f874 2022-02-23 thomas $(top_srcdir)/lib/gitproto.c \
15 db65f874 2022-02-23 thomas $(top_srcdir)/lib/ratelimit.c
16 dd038bc6 2021-09-21 thomas.ad
17 dd038bc6 2021-09-21 thomas.ad got_send_pack_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
18 dd038bc6 2021-09-21 thomas.ad
19 dd038bc6 2021-09-21 thomas.ad LDADD = -L$(top_builddir)/compat -lopenbsd-compat
20 92a9e85d 2021-09-24 thomas if HOST_FREEBSD
21 92a9e85d 2021-09-24 thomas LDADD += -lmd
22 92a9e85d 2021-09-24 thomas endif