forked from containers/crun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
229 lines (185 loc) · 8.75 KB
/
Copy pathMakefile.am
File metadata and controls
229 lines (185 loc) · 8.75 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
DIST_SUBDIRS = libocispec
SUBDIRS = libocispec
ACLOCAL_AMFLAGS = -I m4
WD := $(shell pwd)
# outdir is needed by the make_srpm build type on Fedora copr
# https://docs.pagure.org/copr.copr/user_documentation.html#make-srpm
outdir ?= $(WD)
RPM_OPTS ?= --define "_sourcedir $(WD)" --define "_specdir $(WD)" --define "_builddir $(WD)" --define "_srcrpmdir $(outdir)" --define "_rpmdir $(outdir)" --define "_buildrootdir $(WD)/.build" rpm/crun.spec
# Clean any safe.directory values added to global gitconfig because of srpm and
# rpm target runs
clean-global-gitconfig:
$(shell git config --global --unset-all safe.directory $(shell pwd)/libocispec)
$(shell git config --global --unset-all safe.directory $(shell pwd)/rpm)
$(shell git config --global --unset-all safe.directory /crun)
srpm:
echo $(VERSION)
$(MAKE) -C rpm tarball-prep
rpmbuild -bs $(RPM_OPTS) rpm/crun.spec
$(MAKE) clean-global-gitconfig
rpm: srpm
rpmbuild -ba $(RPM_OPTS) rpm/crun.spec
$(MAKE) clean-global-gitconfig
lib_LTLIBRARIES = libcrun.la
check_LIBRARIES = libcrun_testing.a
libcrun_SOURCES = src/libcrun/utils.c \
src/libcrun/cloned_binary.c \
src/libcrun/container.c \
src/libcrun/cgroup.c \
src/libcrun/cgroup-cgroupfs.c \
src/libcrun/cgroup-resources.c \
src/libcrun/cgroup-setup.c \
src/libcrun/cgroup-systemd.c \
src/libcrun/cgroup-utils.c \
src/libcrun/criu.c \
src/libcrun/custom-handler.c \
src/libcrun/linux.c \
src/libcrun/seccomp.c \
src/libcrun/ebpf.c \
src/libcrun/error.c \
src/libcrun/status.c \
src/libcrun/terminal.c \
src/libcrun/chroot_realpath.c \
src/libcrun/signals.c \
src/libcrun/mount_flags.c \
src/libcrun/seccomp_notify.c \
src/libcrun/handlers/handler-utils.c \
src/libcrun/handlers/krun.c \
src/libcrun/handlers/wasmedge.c \
src/libcrun/handlers/mono.c \
src/libcrun/handlers/wasmtime.c \
src/libcrun/handlers/wasmer.c
if HAVE_EMBEDDED_YAJL
maybe_libyajl.la = libocispec/yajl/libyajl.la
else
maybe_libyajl.la =
endif
libocispec/libocispec.la:
$(MAKE) $(AM_MAKEFLAGS) -C libocispec libocispec.la
libcrun_la_SOURCES = $(libcrun_SOURCES)
libcrun_la_CFLAGS = -I $(abs_top_builddir)/libocispec/src -I $(abs_top_srcdir)/libocispec/src -fvisibility=hidden
libcrun_la_LIBADD = libocispec/libocispec.la $(FOUND_LIBS) $(maybe_libyajl.la)
libcrun_la_LDFLAGS = -Wl,--version-script=$(abs_top_srcdir)/libcrun.lds
# build a version with all the symbols visible for testing
libcrun_testing_a_SOURCES = $(libcrun_SOURCES)
libcrun_testing_a_CFLAGS = -I $(abs_top_builddir)/libocispec/src -I $(abs_top_srcdir)/libocispec/src -fvisibility=default
libcrun_testing_a_LIBADD = libocispec/libocispec.la $(maybe_libyajl.la)
if PYTHON_BINDINGS
pyexec_LTLIBRARIES = python_crun.la
python_crun_la_SOURCES = python/crun_python.c
python_crun_la_CFLAGS = -I $(abs_top_srcdir)/libocispec/src -I $(abs_top_builddir)/libocispec/src -I $(abs_top_builddir)/src $(PYTHON_CFLAGS)
python_crun_la_LDFLAGS = -avoid-version -module $(PYTHON_LDFLAGS)
python_crun_la_LIBADD = libcrun.la $(PYTHON_LIBS) $(FOUND_LIBS) $(maybe_libyajl.la)
endif
crun_CFLAGS = -I $(abs_top_builddir)/libocispec/src -I $(abs_top_srcdir)/libocispec/src -D CRUN_LIBDIR="\"$(CRUN_LIBDIR)\""
crun_SOURCES = src/crun.c src/run.c src/delete.c src/kill.c src/pause.c src/unpause.c src/spec.c \
src/exec.c src/list.c src/create.c src/start.c src/state.c src/update.c src/ps.c \
src/checkpoint.c src/restore.c src/libcrun/cloned_binary.c
if DYNLOAD_LIBCRUN
crun_LDFLAGS = -Wl,--unresolved-symbols=ignore-all $(CRUN_LDFLAGS)
else
crun_LDADD = libcrun.la $(FOUND_LIBS) $(maybe_libyajl.la)
crun_LDFLAGS = $(CRUN_LDFLAGS)
endif
EXTRA_DIST = COPYING COPYING.libcrun README.md NEWS SECURITY.md rpm/crun.spec.in autogen.sh \
src/crun.h src/list.h src/run.h src/delete.h src/kill.h src/pause.h src/unpause.h \
src/create.h src/start.h src/state.h src/exec.h src/spec.h src/update.h src/ps.h \
src/checkpoint.h src/restore.h src/libcrun/seccomp_notify.h src/libcrun/seccomp_notify_plugin.h \
src/libcrun/container.h src/libcrun/seccomp.h src/libcrun/ebpf.h \
src/libcrun/cgroup.h src/libcrun/cgroup-cgroupfs.h \
src/libcrun/cgroup-internal.h \
src/libcrun/cgroup-resources.h src/libcrun/cgroup-setup.h \
src/libcrun/cgroup-systemd.h src/libcrun/cgroup-utils.h \
src/libcrun/custom-handler.h \
src/libcrun/handlers/handler-utils.h \
src/libcrun/linux.h src/libcrun/utils.h src/libcrun/error.h src/libcrun/criu.h \
src/libcrun/status.h src/libcrun/terminal.h src/libcrun/mount_flags.h \
crun.1.md crun.1 libcrun.lds
UNIT_TESTS = tests/tests_libcrun_utils tests/tests_libcrun_errors
bin_PROGRAMS = crun
noinst_PROGRAMS = tests/init $(UNIT_TESTS) tests/tests_libcrun_fuzzer
TESTS_LDADD = libcrun_testing.a $(FOUND_LIBS) $(maybe_libyajl.la)
tests_init_LDADD =
tests_init_LDFLAGS = -static-libgcc -all-static
tests_init_SOURCES = tests/init.c
tests_tests_libcrun_utils_CFLAGS = -I $(abs_top_builddir)/libocispec/src -I $(abs_top_srcdir)/libocispec/src -I $(abs_top_builddir)/src -I $(abs_top_srcdir)/src
tests_tests_libcrun_utils_SOURCES = tests/tests_libcrun_utils.c
tests_tests_libcrun_utils_LDADD = $(TESTS_LDADD)
tests_tests_libcrun_utils_LDFLAGS = $(crun_LDFLAGS)
tests_tests_libcrun_fuzzer_CFLAGS = -I $(abs_top_builddir)/libocispec/src -I $(abs_top_srcdir)/libocispec/src -I $(abs_top_builddir)/src -I $(abs_top_srcdir)/src
tests_tests_libcrun_fuzzer_SOURCES = tests/tests_libcrun_fuzzer.c
tests_tests_libcrun_fuzzer_LDADD = $(TESTS_LDADD) libocispec/libocispec.la $(maybe_libyajl.la)
tests_tests_libcrun_fuzzer_LDFLAGS = $(crun_LDFLAGS)
tests_tests_libcrun_errors_CFLAGS = -I $(abs_top_builddir)/libocispec/src -I $(abs_top_srcdir)/libocispec/src -I $(abs_top_builddir)/src -I $(abs_top_srcdir)/src
tests_tests_libcrun_errors_SOURCES = tests/tests_libcrun_errors.c
tests_tests_libcrun_errors_LDADD = $(TESTS_LDADD)
tests_tests_libcrun_errors_LDFLAGS = $(crun_LDFLAGS)
TEST_EXTENSIONS = .py
PY_LOG_COMPILER = $(PYTHON)
PY_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/build-aux/tap-driver.sh
LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/build-aux/tap-driver.sh
PYTHON_TESTS = tests/test_capabilities.py \
tests/test_cwd.py \
tests/test_checkpoint_restore.py \
tests/test_devices.py \
tests/test_hostname.py \
tests/test_limits.py \
tests/test_mounts.py \
tests/test_paths.py \
tests/test_pid.py \
tests/test_pid_file.py \
tests/test_preserve_fds.py \
tests/test_uid_gid.py \
tests/test_rlimits.py \
tests/test_tty.py \
tests/test_hooks.py \
tests/test_update.py \
tests/test_detach.py \
tests/test_delete.py \
tests/test_resources.py \
tests/test_start.py \
tests/test_exec.py \
tests/test_seccomp.py
TESTS = $(PYTHON_TESTS) $(UNIT_TESTS)
.version:
$(AM_V_GEN)echo $(VERSION) > $@-t && mv $@-t $@
git-version.h:
@if test -e $(abs_top_srcdir)/.tarball-git-version.h; then \
cp $(abs_top_srcdir)/.tarball-git-version.h $@; \
elif test -e $(abs_top_srcdir)/.git; then \
version=`$(AM__GEN)git --git-dir=$(abs_top_srcdir)/.git rev-parse HEAD`; \
$(AM__GEN)printf "/* autogenerated. */\n#ifndef GIT_VERSION\n# define GIT_VERSION \"%s\"\n#endif\n" $$version > $@-t && mv $@-t $@; \
fi
nixpkgs:
@nix run -f channel:nixpkgs-unstable nix-prefetch-git -c nix-prefetch-git \
--no-deepClone https://github.com/nixos/nixpkgs > nix/nixpkgs.json
dist-hook:
$(AM_V_GEN)echo $(VERSION) > $(distdir)/.tarball-version
$(AM__GEN)cp git-version.h $(distdir)/.tarball-git-version.h
EXTRA_DIST += $(PYTHON_TESTS) tests/Makefile.tests tests/run_all_tests.sh tests/tests_utils.py build-aux/git-version-gen src/libcrun/signals.perf src/libcrun/mount_flags.perf
BUILT_SOURCES = .version git-version.h
CLEANFILES = crun.spec .version git-version.h
man1_MANS = crun.1
crun.1: $(abs_srcdir)/crun.1.md
if HAVE_MD2MAN
$(MD2MAN) -in $(abs_srcdir)/crun.1.md -out crun.1
endif HAVE_MD2MAN
generate-man: crun.1
sync:
(cd libocispec; git pull https://github.com/containers/libocispec main)
coverity:
$(MAKE) $(AM_MAKEFLAGS) -C libocispec
$(MAKE) $(AM_MAKEFLAGS) crun
libcrun.rs: src/libcrun/container.h
bindgen src/libcrun/container.h -- -I$(abs_builddir) -I$(abs_builddir)/libocispec/src > $@
generate-rust-bindings: libcrun.rs
generate-signals.c: src/libcrun/signals.perf
${GPERF} --lookup-function-name libcrun_signal_in_word_set -m 100 --null-strings --pic -tCEG -S1 $< > src/libcrun/signals.c
generate-mount_flags.c: src/libcrun/mount_flags.perf
${GPERF} --lookup-function-name libcrun_mount_flag_in_word_set -m 100 -tCEG -S1 $< > src/libcrun/mount_flags.c
clang-format:
# do not format files that were copied into the source directory.
git ls-files src tests | egrep "\\.[hc]" | grep -v "chroot_realpath.c\|cloned_binary.c\|signals.c\|mount_flags.c" | xargs clang-format -style=file -i
shellcheck:
shellcheck tests/*/*.sh contrib/*.sh
.PHONY: coverity sync generate-rust-bindings generate-signals.c generate-mount_flags.c clang-format shellcheck