Blame


1 2b0eee35 2021-09-21 thomas.ad bin_PROGRAMS = gotadmin
2 2b0eee35 2021-09-21 thomas.ad
3 2b0eee35 2021-09-21 thomas.ad gotadmin_SOURCES = gotadmin.c \
4 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/deflate.c \
5 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/delta.c \
6 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/delta_cache.c \
7 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/deltify.c \
8 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/error.c \
9 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/gotconfig.c \
10 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/inflate.c \
11 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/lockfile.c \
12 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object.c \
13 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object_cache.c \
14 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object_create.c \
15 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object_idset.c \
16 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object_parse.c \
17 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/opentemp.c \
18 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/pack.c \
19 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/pack_create.c \
20 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/path.c \
21 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/privsep.c \
22 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/reference.c \
23 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/repository.c \
24 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/repository_admin.c \
25 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/sha1.c
26 2b0eee35 2021-09-21 thomas.ad
27 2b0eee35 2021-09-21 thomas.ad gotadmin_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
28 2b0eee35 2021-09-21 thomas.ad
29 2b0eee35 2021-09-21 thomas.ad man1_MANS = gotadmin.1
30 2b0eee35 2021-09-21 thomas.ad
31 dd514345 2021-09-21 thomas.ad EXTRA_DIST = gotadmin.1
32 dd514345 2021-09-21 thomas.ad
33 2b0eee35 2021-09-21 thomas.ad AM_CPPFLAGS += -DGOT_VERSION='"@VERSION@"' \
34 2b0eee35 2021-09-21 thomas.ad -DGOT_VERSION_NUMBER='"@VERSION@"' \
35 2b0eee35 2021-09-21 thomas.ad -DGOT_LIBEXECDIR="${bindir}" \
36 2b0eee35 2021-09-21 thomas.ad -I$(top_srcdir) \
37 2b0eee35 2021-09-21 thomas.ad -I$(top_srcdir)/compat \
38 2b0eee35 2021-09-21 thomas.ad -I$(top_srcdir)/lib \
39 2b0eee35 2021-09-21 thomas.ad -I$(top_srcdir)/include \
40 2b0eee35 2021-09-21 thomas.ad -I.
41 2b0eee35 2021-09-21 thomas.ad
42 92a9e85d 2021-09-24 thomas LDADD = -L$(top_builddir)/compat -lopenbsd-compat -lmd
43 92a9e85d 2021-09-24 thomas if HOST_FREEBSD
44 92a9e85d 2021-09-24 thomas LDADD += -lmd
45 92a9e85d 2021-09-24 thomas endif