Blame


1 4efc8dcb 2023-08-29 thomas bin_PROGRAMS = gitwrapper
2 4efc8dcb 2023-08-29 thomas
3 4efc8dcb 2023-08-29 thomas include $(top_builddir)/Makefile.common
4 4efc8dcb 2023-08-29 thomas
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@"'
7 4efc8dcb 2023-08-29 thomas
8 4efc8dcb 2023-08-29 thomas CLEANFILES = parse.h
9 4efc8dcb 2023-08-29 thomas
10 4efc8dcb 2023-08-29 thomas gitwrapper_SOURCES = gitwrapper.c \
11 4efc8dcb 2023-08-29 thomas $(top_srcdir)/gotd/log.c \
12 4efc8dcb 2023-08-29 thomas $(top_srcdir)/gotd/parse.y \
13 4efc8dcb 2023-08-29 thomas $(top_srcdir)/lib/dial.c \
14 4efc8dcb 2023-08-29 thomas $(top_srcdir)/lib/error.c \
15 4efc8dcb 2023-08-29 thomas $(top_srcdir)/lib/hash.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
19 4efc8dcb 2023-08-29 thomas
20 4efc8dcb 2023-08-29 thomas gitwrapper_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
21 4efc8dcb 2023-08-29 thomas EXTRA_DIST = gitwrapper.1
22 4efc8dcb 2023-08-29 thomas
23 4efc8dcb 2023-08-29 thomas man1_MANS = gitwrapper.1
24 4efc8dcb 2023-08-29 thomas
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
30 4efc8dcb 2023-08-29 thomas endif
31 4efc8dcb 2023-08-29 thomas
32 597a3a40 2024-04-25 thomas.ad AM_CPPFLAGS += $(libbsd_CFLAGS) $(libuuid_CFLAGS) $(libevent_CFLAGS)