Blame


1 973f3f6e 2022-03-07 thomas libexec_PROGRAMS = got-read-patch
2 973f3f6e 2022-03-07 thomas
3 973f3f6e 2022-03-07 thomas include $(top_builddir)/Makefile.common
4 973f3f6e 2022-03-07 thomas
5 973f3f6e 2022-03-07 thomas got_read_patch_SOURCES = got-read-patch.c \
6 973f3f6e 2022-03-07 thomas $(top_srcdir)/lib/error.c \
7 54bac5ec 2023-02-23 thomas $(top_srcdir)/lib/hash.c \
8 973f3f6e 2022-03-07 thomas $(top_srcdir)/lib/inflate.c \
9 973f3f6e 2022-03-07 thomas $(top_srcdir)/lib/object_parse.c \
10 973f3f6e 2022-03-07 thomas $(top_srcdir)/lib/path.c \
11 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/pollfd.c \
12 54bac5ec 2023-02-23 thomas $(top_srcdir)/lib/privsep.c
13 973f3f6e 2022-03-07 thomas
14 973f3f6e 2022-03-07 thomas got_read_patch_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
15 973f3f6e 2022-03-07 thomas
16 973f3f6e 2022-03-07 thomas LDADD = -L$(top_builddir)/compat -lopenbsd-compat
17 4fccd2fe 2023-03-08 thomas LDADD += $(zlib_LIBS) $(libbsd_LIBS) $(libutil_LIBS)
18 973f3f6e 2022-03-07 thomas if HOST_FREEBSD
19 973f3f6e 2022-03-07 thomas LDADD += -lmd
20 973f3f6e 2022-03-07 thomas endif
21 4fccd2fe 2023-03-08 thomas
22 4fccd2fe 2023-03-08 thomas AM_CPPFLAGS += $(zlib_CFLAGS) $(libbsd_CFLAGS)