From: Andres Freund Date: Tue, 21 Nov 2023 01:46:40 +0000 (-0800) Subject: meson: Add 'world' target X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=6614cfb43c8281feef5c4563ddc36ab04914014e;p=users%2Frhaas%2Fpostgres.git meson: Add 'world' target We have this for make as well. Reviewed-by: Peter Eisentraut Discussion: https://postgr.es/m/20231103163848.26egkh5qdgw3vmil@awork3.anarazel.de --- diff --git a/meson.build b/meson.build index 286d7e4269..588788aad4 100644 --- a/meson.build +++ b/meson.build @@ -3331,6 +3331,8 @@ alias_target('bin', bin_targets + [libpq_st]) alias_target('pl', pl_targets) alias_target('contrib', contrib_targets) alias_target('testprep', testprep_targets) + +alias_target('world', all_built, docs) alias_target('install-world', install_quiet, installdocs)