Blame


1 b2ce1dae 2024-03-30 thomas libexec_PROGRAMS = got-notify-email
2 b2ce1dae 2024-03-30 thomas
3 b2ce1dae 2024-03-30 thomas include $(top_builddir)/Makefile.common
4 b2ce1dae 2024-03-30 thomas
5 b2ce1dae 2024-03-30 thomas got_notify_email_SOURCES = got-notify-email.c \
6 b2ce1dae 2024-03-30 thomas $(top_srcdir)/lib/error.c \
7 b2ce1dae 2024-03-30 thomas $(top_srcdir)/lib/hash.c \
8 b2ce1dae 2024-03-30 thomas $(top_srcdir)/lib/pollfd.c
9 b2ce1dae 2024-03-30 thomas
10 b2ce1dae 2024-03-30 thomas got_notify_email_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
11 b2ce1dae 2024-03-30 thomas
12 b2ce1dae 2024-03-30 thomas LDADD = -L$(top_builddir)/compat -lopenbsd-compat
13 b2ce1dae 2024-03-30 thomas LDADD += $(zlib_LIBS) $(libbsd_LIBS) $(libutil_LIBS) $(libmd_LIBS)
14 b2ce1dae 2024-03-30 thomas if HOST_FREEBSD
15 b2ce1dae 2024-03-30 thomas LDADD += -lmd
16 b2ce1dae 2024-03-30 thomas endif
17 b2ce1dae 2024-03-30 thomas
18 b2ce1dae 2024-03-30 thomas AM_CPPFLAGS += $(zlib_CFLAGS) $(libbsd_CFLAGS) $(libmd_CFLAGS)