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 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/bloom.c \
7 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/buf.c \
8 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/date.c \
9 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/deflate.c \
10 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/delta.c \
11 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/delta_cache.c \
12 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/deltify.c \
13 8b8a0f1e 2023-07-10 thomas $(top_srcdir)/lib/dump.c \
14 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/error.c \
15 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/gotconfig.c \
16 54bac5ec 2023-02-23 thomas $(top_srcdir)/lib/hash.c \
17 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/inflate.c \
18 8b8a0f1e 2023-07-10 thomas $(top_srcdir)/lib/load.c \
19 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/lockfile.c \
20 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/murmurhash2.c \
21 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object.c \
22 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object_cache.c \
23 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object_create.c \
24 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object_idset.c \
25 b61ceafc 2022-10-13 thomas $(top_srcdir)/lib/object_open_privsep.c \
26 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/object_parse.c \
27 381ce3ea 2023-04-22 thomas $(top_srcdir)/lib/object_qid.c \
28 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/opentemp.c \
29 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/pack.c \
30 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/pack_create.c \
31 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/pack_create_privsep.c \
32 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/path.c \
33 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/pollfd.c \
34 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/privsep.c \
35 8c0fc380 2022-01-05 thomas $(top_srcdir)/lib/ratelimit.c \
36 d348087d 2022-10-13 thomas $(top_srcdir)/lib/read_gitconfig_privsep.c \
37 400c1baa 2022-10-13 thomas $(top_srcdir)/lib/read_gotconfig_privsep.c \
38 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/reference.c \
39 4e80a172 2022-10-23 thomas $(top_srcdir)/lib/reference_parse.c \
40 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/repository.c \
41 2b0eee35 2021-09-21 thomas.ad $(top_srcdir)/lib/repository_admin.c \
42 948a2b91 2022-10-17 thomas $(top_srcdir)/lib/sigs.c \
43 fc16ecdf 2022-10-17 thomas $(top_srcdir)/lib/worktree_open.c
44 2b0eee35 2021-09-21 thomas.ad
45 2b0eee35 2021-09-21 thomas.ad gotadmin_DEPENDENCIES = $(top_builddir)/compat/libopenbsd-compat.a
46 5881cd17 2021-10-09 thomas EXTRA_DIST = gotadmin.1
47 2b0eee35 2021-09-21 thomas.ad
48 2b0eee35 2021-09-21 thomas.ad man1_MANS = gotadmin.1
49 2b0eee35 2021-09-21 thomas.ad
50 b347007e 2021-10-15 thomas LDADD = -L$(top_builddir)/compat -lopenbsd-compat -lm
51 5007bd0d 2023-04-14 thomas LDADD += $(libbsd_LIBS) $(zlib_LIBS) $(libuuid_LIBS) $(libutil_LIBS) \
52 5007bd0d 2023-04-14 thomas $(libmd_LIBS)
53 92a9e85d 2021-09-24 thomas if HOST_FREEBSD
54 92a9e85d 2021-09-24 thomas LDADD += -lmd
55 92a9e85d 2021-09-24 thomas endif
56 4fccd2fe 2023-03-08 thomas
57 5007bd0d 2023-04-14 thomas AM_CPPFLAGS += $(libbsd_CFLAGS) $(zlib_CFLAGS) $(libuuid_CFLAGS) \
58 5007bd0d 2023-04-14 thomas $(libmd_CFLAGS)