1 4efc8dcb 2023-08-29 thomas bin_PROGRAMS = gitwrapper
3 4efc8dcb 2023-08-29 thomas include $(top_builddir)/Makefile.common
5 4efc8dcb 2023-08-29 thomas AM_CPPFLAGS += -I$(top_builddir)/gotd
6 adafacd3 2023-08-29 thomas AM_CPPFLAGS += -DGITWRAPPER_GIT_LIBEXEC_DIR='"@GITWRAPPER_LIBEXEC_PATHC@"'
8 4efc8dcb 2023-08-29 thomas CLEANFILES = parse.h
10 4efc8dcb 2023-08-29 thomas gitwrapper_SOURCES = gitwrapper.c \
11 4efc8dcb 2023-08-29 thomas $(top_srcdir)/gotd/parse.y \
12 4efc8dcb 2023-08-29 thomas $(top_srcdir)/lib/dial.c \
13 4efc8dcb 2023-08-29 thomas $(top_srcdir)/lib/error.c \
14 4efc8dcb 2023-08-29 thomas $(top_srcdir)/lib/hash.c \
15 9067b8a0 2024-05-26 thomas $(top_srcdir)/lib/log.c \
16 4efc8dcb 2023-08-29 thomas $(top_srcdir)/lib/object_qid.c \
17 4efc8dcb 2023-08-29 thomas $(top_srcdir)/lib/path.c \
18 597a3a40 2024-04-25 thomas.ad $(top_srcdir)/lib/reference_parse.c
20 4efc8dcb 2023-08-29 thomas gitwrapper_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
21 4efc8dcb 2023-08-29 thomas EXTRA_DIST = gitwrapper.1
23 4efc8dcb 2023-08-29 thomas man1_MANS = gitwrapper.1
25 597a3a40 2024-04-25 thomas.ad LDADD = -L$(top_builddir)/compat -lopenbsd-compat
26 4efc8dcb 2023-08-29 thomas LDADD += $(libbsd_LIBS) \
27 597a3a40 2024-04-25 thomas.ad $(libuuid_LIBS)
28 4efc8dcb 2023-08-29 thomas if HOST_FREEBSD
29 4efc8dcb 2023-08-29 thomas LDADD += -lmd
32 597a3a40 2024-04-25 thomas.ad AM_CPPFLAGS += $(libbsd_CFLAGS) $(libuuid_CFLAGS) $(libevent_CFLAGS)