From 1e737d44d1d6cf6d8f79c8c9e0ea7de11e1edf97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 4 Oct 2025 18:09:20 +0200 Subject: [PATCH] meson: add target aliases 'man' and 'html' Previously we would need to say 'ninja -C build man/man man/html', now just 'ninja -C build man html'. --- meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meson.build b/meson.build index 9ffc844dc61..c67e7b6c30d 100644 --- a/meson.build +++ b/meson.build @@ -2940,6 +2940,8 @@ run_target( libsystemd.full_path(), libudev.full_path()]) +alias_target('man', man) +alias_target('html', html) alias_target('update-dbus-docs', update_dbus_docs) alias_target('update-man-rules', update_man_rules)