Blame


1 2b0eee35 2021-09-21 thomas.ad bin_PROGRAMS = gotadmin
2 2b0eee35 2021-09-21 thomas.ad
3 0ca5b679 2021-10-09 thomas include $(top_builddir)/Makefile.common
4 0ca5b679 2021-10-09 thomas
5 2b0eee35 2021-09-21 thomas.ad gotadmin_SOURCES = gotadmin.c \
6 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/deflate.c \
7 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/delta.c \
8 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/delta_cache.c \
9 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/deltify.c \
10 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/error.c \
11 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/gotconfig.c \
12 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/inflate.c \
13 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/lockfile.c \
14 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object.c \
15 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object_cache.c \
16 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object_create.c \
17 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object_idset.c \
18 b61ceafc 2022-10-13 thomas $(top_srcdir)/lib/object_open_privsep.c \
19 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object_parse.c \
20 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/opentemp.c \
21 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/pack.c \
22 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/pack_create.c \
23 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/path.c \
24 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/privsep.c \
25 8c0fc380 2022-01-05 thomas $(top_srcdir)/lib/ratelimit.c \
26 d348087d 2022-10-13 thomas $(top_srcdir)/lib/read_gitconfig_privsep.c \
27 400c1baa 2022-10-13 thomas $(top_srcdir)/lib/read_gotconfig_privsep.c \
28 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/reference.c \
29 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/repository.c \
30 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/repository_admin.c \
31 b347007e 2021-10-15 thomas $(top_srcdir)/lib/sha1.c \
32 b347007e 2021-10-15 thomas $(top_srcdir)/lib/bloom.c \
33 2f6f8179 2021-11-20 thomas $(top_srcdir)/lib/murmurhash2.c \
34 eb427b1c 2022-07-03 thomas $(top_srcdir)/lib/worktree_open.c \
35 eb427b1c 2022-07-03 thomas $(top_srcdir)/lib/date.c \
36 eb427b1c 2022-07-03 thomas $(top_srcdir)/lib/buf.c \
37 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/sigs.c \
38 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/pack_create_privsep.c
39 2b0eee35 2021-09-21 thomas.ad
40 2b0eee35 2021-09-21 thomas.ad gotadmin_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
41 5881cd17 2021-10-09 thomas EXTRA_DIST = gotadmin.1
42 2b0eee35 2021-09-21 thomas.ad
43 2b0eee35 2021-09-21 thomas.ad man1_MANS = gotadmin.1
44 2b0eee35 2021-09-21 thomas.ad
45 b347007e 2021-10-15 thomas LDADD = -L$(top_builddir)/compat -lopenbsd-compat -lm
46 92a9e85d 2021-09-24 thomas if HOST_FREEBSD
47 92a9e85d 2021-09-24 thomas LDADD += -lmd
48 92a9e85d 2021-09-24 thomas endif