Blame


1 e19a8793 2024-04-25 thomas.ad libexec_PROGRAMS = got-fetch-http
2 e19a8793 2024-04-25 thomas.ad
3 e19a8793 2024-04-25 thomas.ad include $(top_builddir)/Makefile.common
4 e19a8793 2024-04-25 thomas.ad
5 e19a8793 2024-04-25 thomas.ad got_fetch_http_SOURCES = got-fetch-http.c \
6 e19a8793 2024-04-25 thomas.ad $(top_srcdir)/lib/bufio.c \
7 e19a8793 2024-04-25 thomas.ad $(top_srcdir)/lib/error.c \
8 e19a8793 2024-04-25 thomas.ad $(top_srcdir)/lib/hash.c \
9 e19a8793 2024-04-25 thomas.ad $(top_srcdir)/lib/inflate.c \
10 e19a8793 2024-04-25 thomas.ad $(top_srcdir)/lib/path.c \
11 e19a8793 2024-04-25 thomas.ad $(top_srcdir)/lib/pkt.c \
12 e19a8793 2024-04-25 thomas.ad $(top_srcdir)/lib/pollfd.c \
13 e19a8793 2024-04-25 thomas.ad $(top_srcdir)/lib/privsep.c \
14 e19a8793 2024-04-25 thomas.ad $(top_srcdir)/lib/object_qid.c \
15 e19a8793 2024-04-25 thomas.ad $(top_srcdir)/lib/object_parse.c
16 e19a8793 2024-04-25 thomas.ad
17 e19a8793 2024-04-25 thomas.ad got_fetch_http_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
18 e19a8793 2024-04-25 thomas.ad
19 e19a8793 2024-04-25 thomas.ad LDADD = -L$(top_builddir)/compat -lopenbsd-compat
20 e19a8793 2024-04-25 thomas.ad LDADD += $(zlib_LIBS) $(libbsd_LIBS) $(libutil_LIBS) $(libmd_LIBS) $(libtls_LIBS)
21 e19a8793 2024-04-25 thomas.ad if HOST_FREEBSD
22 e19a8793 2024-04-25 thomas.ad LDADD += -lmd
23 e19a8793 2024-04-25 thomas.ad endif
24 e19a8793 2024-04-25 thomas.ad
25 e19a8793 2024-04-25 thomas.ad AM_CPPFLAGS += $(zlib_CFLAGS) $(libbsd_CFLAGS) $(libmd_CFLAGS) $(libtls_CFLAGS)