aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2024-02-22 10:09:26 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2024-02-29 08:52:24 -0300
commitc9531d95ed3f12c382a0292e9eb508a9b9c96532 (patch)
tree4fb01ef4456f41906bf10831b8d8849e719f9a79 /Makefile
parentbuild: use generic wildcard on package install (diff)
downloadfirejail-c9531d95ed3f12c382a0292e9eb508a9b9c96532.tar.gz
firejail-c9531d95ed3f12c382a0292e9eb508a9b9c96532.tar.zst
firejail-c9531d95ed3f12c382a0292e9eb508a9b9c96532.zip
build: add print-version target and use in CI
To reduce TARNAME hardcoding. Added on commit 6a89ab023 ("ci: run firejail --version after build/install", 2022-05-16) / PR #5148.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index dcd84b7ab..158a3c222 100644
--- a/Makefile
+++ b/Makefile
@@ -391,6 +391,10 @@ codespell:
391print-env: 391print-env:
392 ./ci/printenv.sh 392 ./ci/printenv.sh
393 393
394.PHONY: print-version
395print-version: config.mk
396 command -V $(TARNAME) && $(TARNAME) --version
397
394# 398#
395# make test 399# make test
396# 400#