From: Zbigniew Jędrzejewski-Szmek Date: Sat, 4 Oct 2025 16:09:20 +0000 (+0200) Subject: meson: add target aliases 'man' and 'html' X-Git-Tag: v259-rc1~389^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1e737d44d1d6cf6d8f79c8c9e0ea7de11e1edf97;p=thirdparty%2Fsystemd.git 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'. --- 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)