Blame


1 6b78ad28 2021-09-25 thomas libexec_PROGRAMS = got-read-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_read_pack_SOURCES = got-read-pack.c \
6 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/delta.c \
7 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/delta_cache.c \
8 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/error.c \
9 54bac5ec 2023-02-23 thomas $(top_srcdir)/lib/hash.c \
10 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/inflate.c \
11 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_cache.c \
12 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/object_idset.c \
13 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/object_parse.c \
14 381ce3ea 2023-04-22 thomas $(top_srcdir)/lib/object_qid.c \
15 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/opentemp.c \
16 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/pack.c \
17 dd038bc6 2021-09-21 thomas.ad $(top_srcdir)/lib/path.c \
18 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/pollfd.c \
19 54bac5ec 2023-02-23 thomas $(top_srcdir)/lib/privsep.c
20 dd038bc6 2021-09-21 thomas.ad
21 dd038bc6 2021-09-21 thomas.ad got_read_pack_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
22 dd038bc6 2021-09-21 thomas.ad
23 dd038bc6 2021-09-21 thomas.ad LDADD = -L$(top_builddir)/compat -lopenbsd-compat
24 5007bd0d 2023-04-14 thomas LDADD += $(zlib_LIBS) $(libbsd_LIBS) $(libutil_LIBS) $(libmd_LIBS)
25 92a9e85d 2021-09-24 thomas if HOST_FREEBSD
26 92a9e85d 2021-09-24 thomas LDADD += -lmd
27 92a9e85d 2021-09-24 thomas endif
28 4fccd2fe 2023-03-08 thomas
29 5007bd0d 2023-04-14 thomas AM_CPPFLAGS += $(zlib_CFLAGS) $(libbsd_CFLAGS) $(libmd_CFLAGS)