Blame


1 6b78ad28 2021-09-25 thomas libexec_PROGRAMS = got-read-pack
2 dd038bc6 2021-09-21 thomas.ad got_read_pack_SOURCES = got-read-pack.c \
3 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/delta.c \
4 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/delta_cache.c \
5 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/error.c \
6 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/inflate.c \
7 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_parse.c \
8 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_cache.c \
9 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_idset.c \
10 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/opentemp.c \
11 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/pack.c \
12 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/path.c \
13 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/privsep.c \
14 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/sha1.c
15 dd038bc6 2021-09-21 thomas.ad
16 dd038bc6 2021-09-21 thomas.ad got_read_pack_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
17 dd038bc6 2021-09-21 thomas.ad
18 dd038bc6 2021-09-21 thomas.ad AM_CPPFLAGS += -DGOT_VERSION='"@VERSION@"' \
19 dd038bc6 2021-09-21 thomas.ad -DGOT_VERSION_NUMBER='"@VERSION@"' \
20 6b78ad28 2021-09-25 thomas -DGOT_LIBEXECDIR="$(libexecdir)" \
21 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir) \
22 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir)/compat \
23 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir)/lib \
24 dd038bc6 2021-09-21 thomas.ad -I$(top_srcdir)/include \
25 dd038bc6 2021-09-21 thomas.ad -I.
26 dd038bc6 2021-09-21 thomas.ad
27 dd038bc6 2021-09-21 thomas.ad LDADD = -L$(top_builddir)/compat -lopenbsd-compat
28 92a9e85d 2021-09-24 thomas if HOST_FREEBSD
29 92a9e85d 2021-09-24 thomas LDADD += -lmd
30 92a9e85d 2021-09-24 thomas endif