File: Makefile.am

package info (click to toggle)
got 0.119-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,448 kB
  • sloc: ansic: 124,378; sh: 50,814; yacc: 4,353; makefile: 2,241; perl: 357
file content (32 lines) | stat: -rw-r--r-- 828 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
bin_PROGRAMS = gitwrapper

include $(top_builddir)/Makefile.common

AM_CPPFLAGS += -I$(top_builddir)/gotd
AM_CPPFLAGS += -DGITWRAPPER_GIT_LIBEXEC_DIR='"@GITWRAPPER_LIBEXEC_PATHC@"'

CLEANFILES = parse.h

gitwrapper_SOURCES = gitwrapper.c \
		  $(top_srcdir)/gotd/parse.y \
		  $(top_srcdir)/lib/dial.c \
		  $(top_srcdir)/lib/error.c \
		  $(top_srcdir)/lib/hash.c \
		  $(top_srcdir)/lib/log.c \
		  $(top_srcdir)/lib/object_qid.c \
		  $(top_srcdir)/lib/path.c \
		  $(top_srcdir)/lib/reference_parse.c

gitwrapper_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
EXTRA_DIST = gitwrapper.1

man1_MANS = gitwrapper.1

LDADD = -L$(top_builddir)/compat -lopenbsd-compat
LDADD += $(libbsd_LIBS) \
	 $(libuuid_LIBS)
if HOST_FREEBSD
LDADD += -lmd
endif

AM_CPPFLAGS += $(libbsd_CFLAGS) $(libuuid_CFLAGS) $(libevent_CFLAGS)