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 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
|
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
if ENABLE_LIBCRUN
lib_LTLIBRARIES = libcrun.la
else
noinst_LTLIBRARIES = libcrun.la
endif
if BUILD_TESTS
check_LTLIBRARIES = libcrun_testing.la
endif
libcrun_SOURCES = src/libcrun/utils.c \
src/libcrun/string_map.c \
src/libcrun/ring_buffer.c \
src/libcrun/blake3/blake3.c \
src/libcrun/blake3/blake3_portable.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/cgroup.c \
src/libcrun/chroot_realpath.c \
src/libcrun/cloned_binary.c \
src/libcrun/container.c \
src/libcrun/criu.c \
src/libcrun/custom-handler.c \
src/libcrun/ebpf.c \
src/libcrun/error.c \
src/libcrun/handlers/handler-utils.c \
src/libcrun/handlers/krun.c \
src/libcrun/handlers/mono.c \
src/libcrun/handlers/spin.c \
src/libcrun/handlers/wasmedge.c \
src/libcrun/handlers/wasmer.c \
src/libcrun/handlers/wasmtime.c \
src/libcrun/handlers/wamr.c \
src/libcrun/intelrdt.c \
src/libcrun/io_priority.c \
src/libcrun/linux.c \
src/libcrun/mount_flags.c \
src/libcrun/scheduler.c \
src/libcrun/mempolicy.c \
src/libcrun/seccomp.c \
src/libcrun/seccomp_notify.c \
src/libcrun/signals.c \
src/libcrun/status.c \
src/libcrun/net_device.c \
src/libcrun/terminal.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
if ENABLE_COVERAGE
libcrun_la_CFLAGS += $(COVERAGE_CFLAGS)
libcrun_la_LDFLAGS = -Wl,--version-script=$(abs_top_srcdir)/libcrun.lds $(COVERAGE_LDFLAGS)
else
libcrun_la_LDFLAGS = -Wl,--version-script=$(abs_top_srcdir)/libcrun.lds
endif
libcrun_la_LIBADD = libocispec/libocispec.la $(FOUND_LIBS) $(maybe_libyajl.la)
# build a version with all the symbols visible for testing
if BUILD_TESTS
libcrun_testing_la_SOURCES = $(libcrun_SOURCES)
libcrun_testing_la_CFLAGS = -I $(abs_top_builddir)/libocispec/src -I $(abs_top_srcdir)/libocispec/src -fvisibility=default
if ENABLE_COVERAGE
libcrun_testing_la_CFLAGS += $(COVERAGE_CFLAGS)
libcrun_testing_la_LDFLAGS = $(COVERAGE_LDFLAGS)
endif
libcrun_testing_la_LIBADD = libocispec/libocispec.la $(maybe_libyajl.la)
endif
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
if LUA_BINDINGS
luaexec_LTLIBRARIES = luacrun.la
luacrun_la_SOURCES = lua/lua_crun.c
luacrun_la_CFLAGS = -I $(abs_top_srcdir)/libocispec/src -I $(abs_top_builddir)/libocispec/src -I $(abs_top_builddir)/src $(LUA_INCLUDE)
luacrun_la_LDFLAGS = -avoid-version -module
luacrun_la_LIBADD = libcrun.la $(LUA_LIB) $(FOUND_LIBS)
LUACRUN_CLEAN_VERSION = $(shell git describe --tags | sed 's/-g[0-9a-f]\{7,9\}//')
LUACRUN_RELEASE_VERSION = $(shell git describe --tags | sed 's/-[0-9]*-g[0-9a-f]\{7,9\}//')
LUACRUN_ROCKSPEC = luacrun-$(LUACRUN_CLEAN_VERSION).rockspec
$(LUACRUN_ROCKSPEC): lua/luacrun.rockspec
sed -e 's/@RELEASEVERSION/$(LUACRUN_RELEASE_VERSION)/g' < lua/luacrun.rockspec | \
sed -e 's/@CLEANVERSION/$(LUACRUN_CLEAN_VERSION)/g' > $@
LUACRUN_ROCK = luacrun-$(LUACRUN_CLEAN_VERSION).src.rock
$(LUACRUN_ROCK): dist-gzip $(LUACRUN_ROCKSPEC)
rm -f $(LUACRUN_ROCK)
mv "$(distdir).tar.gz" "crun-$(LUACRUN_RELEASE_VERSION).tar.gz"
tar -xzf "crun-$(LUACRUN_RELEASE_VERSION).tar.gz" --transform="s/crun-$(VERSION)\(.*\)$$/crun-$(LUACRUN_RELEASE_VERSION)\1/"
tar -czf "crun-$(LUACRUN_RELEASE_VERSION).tar.gz" "crun-$(LUACRUN_RELEASE_VERSION)"
rm -rf "crun-$(LUACRUN_RELEASE_VERSION)"
zip -j $(LUACRUN_ROCK) $(LUACRUN_ROCKSPEC) "crun-$(LUACRUN_RELEASE_VERSION).tar.gz"
rm -f "crun-$(LUACRUN_RELEASE_VERSION).tar.gz"
dist-luarock: $(LUACRUN_ROCK)
endif
crun_CFLAGS = -I $(abs_top_builddir)/libocispec/src -I $(abs_top_srcdir)/libocispec/src -D CRUN_LIBDIR="\"$(CRUN_LIBDIR)\""
if ENABLE_COVERAGE
crun_CFLAGS += $(COVERAGE_CFLAGS)
endif
crun_SOURCES = src/crun.c src/run.c src/delete.c src/kill.c src/pause.c src/unpause.c src/oci_features.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/mounts.c src/run_create.c
if DYNLOAD_LIBCRUN
if ENABLE_COVERAGE
crun_LDFLAGS = -Wl,--unresolved-symbols=ignore-all $(CRUN_LDFLAGS) $(COVERAGE_LDFLAGS)
else
crun_LDFLAGS = -Wl,--unresolved-symbols=ignore-all $(CRUN_LDFLAGS)
endif
else
crun_LDADD = libcrun.la $(FOUND_LIBS) $(maybe_libyajl.la)
if ENABLE_COVERAGE
crun_LDFLAGS = $(CRUN_LDFLAGS) $(COVERAGE_LDFLAGS)
else
crun_LDFLAGS = $(CRUN_LDFLAGS)
endif
endif
EXTRA_DIST = COPYING COPYING.libcrun README.md NEWS SECURITY.md rpm/crun.spec autogen.sh \
src/libcrun/blake3/blake3_impl.h src/libcrun/blake3/blake3.h \
src/crun.h src/list.h src/run.h src/run_create.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/oci_features.h src/spec.h src/update.h src/ps.h src/mounts.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/io_priority.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/scheduler.h src/libcrun/mempolicy.h src/libcrun/status.h src/libcrun/terminal.h \
src/libcrun/mount_flags.h src/libcrun/intelrdt.h src/libcrun/ring_buffer.h src/libcrun/string_map.h \
src/libcrun/net_device.h \
src/libcrun/syscalls.h \
crun.1.md crun.1 libcrun.lds \
krun.1.md krun.1 \
lua/luacrun.rockspec
if BUILD_TESTS
UNIT_TESTS = tests/tests_libcrun_utils tests/tests_libcrun_ring_buffer tests/tests_libcrun_errors tests/tests_libcrun_intelrdt tests/tests_libcrun_terminal tests/tests_libcrun_custom_handler tests/tests_libcrun_linux tests/tests_libcrun_signals tests/tests_libcrun_mount_flags tests/tests_libcrun_chroot_realpath tests/tests_libcrun_seccomp_notify tests/tests_libcrun_cgroup
endif
if ENABLE_CRUN
bin_PROGRAMS = crun
noinst_PROGRAMS =
else
noinst_PROGRAMS = crun
endif
if BUILD_TESTS
check_PROGRAMS = tests/init $(UNIT_TESTS) tests/tests_libcrun_fuzzer
TESTS_LDADD = libcrun_testing.la $(FOUND_LIBS) $(maybe_libyajl.la)
tests_init_LDADD =
tests_init_LDFLAGS = -static-libgcc -all-static
tests_init_CFLAGS = -g -O2
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_ring_buffer_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_ring_buffer_SOURCES = tests/tests_libcrun_ring_buffer.c
tests_tests_libcrun_ring_buffer_LDADD = $(TESTS_LDADD)
tests_tests_libcrun_ring_buffer_LDFLAGS = $(crun_LDFLAGS)
tests_tests_libcrun_intelrdt_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_intelrdt_SOURCES = tests/tests_libcrun_intelrdt.c
tests_tests_libcrun_intelrdt_LDADD = $(TESTS_LDADD)
tests_tests_libcrun_intelrdt_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)
tests_tests_libcrun_terminal_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_terminal_SOURCES = tests/tests_libcrun_terminal.c
tests_tests_libcrun_terminal_LDADD = $(TESTS_LDADD)
tests_tests_libcrun_terminal_LDFLAGS = $(crun_LDFLAGS)
tests_tests_libcrun_custom_handler_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_custom_handler_SOURCES = tests/tests_libcrun_custom_handler.c
tests_tests_libcrun_custom_handler_LDADD = $(TESTS_LDADD)
tests_tests_libcrun_custom_handler_LDFLAGS = $(crun_LDFLAGS)
tests_tests_libcrun_linux_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_linux_SOURCES = tests/tests_libcrun_linux.c
tests_tests_libcrun_linux_LDADD = $(TESTS_LDADD)
tests_tests_libcrun_linux_LDFLAGS = $(crun_LDFLAGS)
tests_tests_libcrun_signals_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_signals_SOURCES = tests/tests_libcrun_signals.c
tests_tests_libcrun_signals_LDADD = $(TESTS_LDADD)
tests_tests_libcrun_signals_LDFLAGS = $(crun_LDFLAGS)
tests_tests_libcrun_mount_flags_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_mount_flags_SOURCES = tests/tests_libcrun_mount_flags.c
tests_tests_libcrun_mount_flags_LDADD = $(TESTS_LDADD)
tests_tests_libcrun_mount_flags_LDFLAGS = $(crun_LDFLAGS)
tests_tests_libcrun_chroot_realpath_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_chroot_realpath_SOURCES = tests/tests_libcrun_chroot_realpath.c
tests_tests_libcrun_chroot_realpath_LDADD = $(TESTS_LDADD)
tests_tests_libcrun_chroot_realpath_LDFLAGS = $(crun_LDFLAGS)
tests_tests_libcrun_seccomp_notify_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_seccomp_notify_SOURCES = tests/tests_libcrun_seccomp_notify.c
tests_tests_libcrun_seccomp_notify_LDADD = $(TESTS_LDADD)
tests_tests_libcrun_seccomp_notify_LDFLAGS = $(crun_LDFLAGS)
tests_tests_libcrun_cgroup_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_cgroup_SOURCES = tests/tests_libcrun_cgroup.c
tests_tests_libcrun_cgroup_LDADD = $(TESTS_LDADD)
tests_tests_libcrun_cgroup_LDFLAGS = $(crun_LDFLAGS)
endif
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_domainname.py \
tests/test_limits.py \
tests/test_oci_features.py \
tests/test_mempolicy.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_annotations.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/test_time.py \
tests/test_bpf_devices.py \
tests/test_linux_features.py \
tests/test_io_priority.py \
tests/test_create.py \
tests/test_cgroup_setup.py \
tests/test_namespaces.py \
tests/test_scheduler.py \
tests/test_terminal.py \
tests/test_commands.py \
tests/test_net_device.py \
tests/test_cgroup_resources.py \
tests/test_error_handling.py \
tests/test_custom_handler.py
if BUILD_TESTS
TESTS = $(PYTHON_TESTS) $(UNIT_TESTS)
endif
.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 --extra-experimental-features nix-command run -f channel:nixpkgs-unstable 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/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 $(LUACRUN_ROCKSPEC)
man1_MANS =
if ENABLE_CRUN
man1_MANS += crun.1
endif
if ENABLE_KRUN
man1_MANS += krun.1
endif
crun.1: $(abs_srcdir)/crun.1.md
if HAVE_MD2MAN
$(MD2MAN) -in $(abs_srcdir)/crun.1.md -out crun.1
endif HAVE_MD2MAN
krun.1: $(abs_srcdir)/krun.1.md
if HAVE_MD2MAN
$(MD2MAN) -in $(abs_srcdir)/krun.1.md -out krun.1
endif HAVE_MD2MAN
install-exec-hook:
if ENABLE_KRUN
$(LN_S) -f crun$(EXEEXT) $(DESTDIR)$(bindir)/krun$(EXEEXT)
endif
if ENABLE_WASM
$(LN_S) -f crun$(EXEEXT) $(DESTDIR)$(bindir)/crun-wasm$(EXEEXT)
endif
uninstall-hook:
if ENABLE_KRUN
rm -f $(DESTDIR)$(bindir)/krun$(EXEEXT)
endif
if ENABLE_WASM
rm -f $(DESTDIR)$(bindir)/crun-wasm$(EXEEXT)
endif
generate-man: crun.1 krun.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 contrib src tests | grep -E "\\.[hc]" | grep -v "blake3\|chroot_realpath.c\|cloned_binary.c\|signals.c\|mount_flags.c" | xargs clang-format -style=file -i
shellcheck:
shellcheck autogen.sh build-aux/release.sh tests/run_all_tests.sh tests/*/*.sh contrib/*.sh
# Code coverage targets
if ENABLE_COVERAGE
# Clean coverage data
coverage-clean:
@rm -rf docs/coverage coverage.info coverage.xml
@find . -name "*.gcda" -delete
@find . -name "*.gcno" -delete
# Reset coverage counters
coverage-reset:
@if test -n "$(LCOV)"; then \
$(LCOV) --zerocounters --directory .; \
fi
# Run tests and collect coverage data
coverage-check: coverage-reset
@echo "Running tests for coverage (single-threaded to avoid race conditions)..."
$(MAKE) -j1 check
@echo "Collecting coverage data..."
# Generate HTML coverage report (preferred method with lcov)
coverage-html: coverage-check
@if test -n "$(LCOV)"; then \
echo "Generating coverage report with lcov..."; \
$(LCOV) --capture --directory . --output-file coverage.info; \
$(LCOV) --remove coverage.info '/usr/*' --output-file coverage.info; \
$(LCOV) --remove coverage.info '*/libocispec/*' --output-file coverage.info; \
$(LCOV) --remove coverage.info '*/tests/test_*.py*' --output-file coverage.info; \
$(LCOV) --remove coverage.info '*/tests/init*' --output-file coverage.info; \
genhtml coverage.info --output-directory docs/coverage; \
echo "Coverage report generated in docs/coverage/index.html"; \
elif test -n "$(GCOVR)"; then \
echo "Generating coverage report with gcovr..."; \
$(GCOVR) --html --html-details -o coverage.html \
--exclude '/usr/.*' --exclude '.*/libocispec/.*' --exclude '.*/tests/test_.*\.py.*' --exclude '.*/tests/init.*'; \
echo "Coverage report generated in coverage.html"; \
else \
echo "Generating coverage report with gcov..."; \
mkdir -p docs/coverage; \
for src in $(libcrun_SOURCES) $(crun_SOURCES); do \
if test -f "$${src}.gcno"; then \
$(GCOV) -o . $$src || true; \
fi; \
done; \
mv *.gcov docs/coverage/ 2>/dev/null || true; \
echo "Coverage files generated in docs/coverage/"; \
fi
# Generate XML coverage report (for CI tools)
coverage-xml: coverage-check
@if test -n "$(GCOVR)"; then \
echo "Generating XML coverage report with gcovr..."; \
$(GCOVR) --xml -o coverage.xml \
--exclude '/usr/.*' --exclude '.*/libocispec/.*' --exclude '.*/tests/test_.*\.py.*' --exclude '.*/tests/init.*'; \
echo "Coverage report generated in coverage.xml"; \
elif test -n "$(LCOV)"; then \
echo "Generating XML coverage report with lcov..."; \
$(LCOV) --capture --directory . --output-file coverage.info; \
$(LCOV) --remove coverage.info '/usr/*' --output-file coverage.info; \
$(LCOV) --remove coverage.info '*/libocispec/*' --output-file coverage.info; \
$(LCOV) --remove coverage.info '*/tests/test_*.py*' --output-file coverage.info; \
$(LCOV) --remove coverage.info '*/tests/init*' --output-file coverage.info; \
echo "Coverage data collected in coverage.info"; \
else \
echo "XML coverage requires gcovr or lcov"; \
exit 1; \
fi
# Generate coverage summary
coverage-summary: coverage-check
@if test -n "$(LCOV)"; then \
echo "Coverage summary (lcov):"; \
$(LCOV) --capture --directory . --output-file coverage.info; \
$(LCOV) --remove coverage.info '/usr/*' --output-file coverage.info; \
$(LCOV) --remove coverage.info '*/libocispec/*' --output-file coverage.info; \
$(LCOV) --remove coverage.info '*/tests/test_*.py*' --output-file coverage.info; \
$(LCOV) --remove coverage.info '*/tests/init*' --output-file coverage.info; \
$(LCOV) --summary coverage.info; \
elif test -n "$(GCOVR)"; then \
echo "Coverage summary (gcovr):"; \
$(GCOVR) --exclude '/usr/.*' --exclude '.*/libocispec/.*' --exclude '.*/tests/test_.*\.py.*' --exclude '.*/tests/init.*'; \
else \
echo "Coverage summary requires lcov or gcovr"; \
fi
# Multi-environment coverage (requires root)
# Runs tests in multiple environments to maximize coverage
coverage-multi-env:
@if test $$(id -u) -ne 0; then \
echo "Error: coverage-multi-env requires root"; \
exit 1; \
fi
$(PYTHON) $(srcdir)/tests/run_coverage_multi_env.py
else
coverage-clean:
@echo "Coverage support not enabled. Reconfigure with --enable-coverage"
coverage-reset coverage-check coverage-html coverage-xml coverage-summary coverage-multi-env:
@echo "Coverage support not enabled. Reconfigure with --enable-coverage"
endif
clean-local: coverage-clean
# Coverage targets must not run in parallel due to race conditions in .gcda file writes
.NOTPARALLEL: coverage-reset coverage-check coverage-html coverage-xml coverage-summary coverage-multi-env
.PHONY: coverity sync generate-rust-bindings generate-signals.c generate-mount_flags.c clang-format shellcheck coverage-clean coverage-reset coverage-check coverage-html coverage-xml coverage-summary coverage-multi-env
|