diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-06-29 08:45:09 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-06-29 08:45:09 +0200 |
commit | 7daa7916182025d737f439da5fe5d67fe1a2fb8c (patch) | |
tree | 7604da6f22d2262dbdddd60053cc897dc5b478b3 /libbuild2/target.cxx | |
parent | d1d28c5f261e39013b8b987d58b3c0acaa8c762b (diff) |
Add legal{} target type and config.install.legal variable
This allows separation of legal files (LICENSE, AUTHORS, etc) from other
documentation. For example:
./: ... doc{README} legal{LICENSE}
$ b install ... config.install.legal=/usr/share/licenses/hello/
Diffstat (limited to 'libbuild2/target.cxx')
-rw-r--r-- | libbuild2/target.cxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libbuild2/target.cxx b/libbuild2/target.cxx index a543f34..232b0b1 100644 --- a/libbuild2/target.cxx +++ b/libbuild2/target.cxx @@ -1239,6 +1239,19 @@ namespace build2 false }; + const target_type legal::static_type + { + "legal", + &doc::static_type, + &target_factory<legal>, + &target_extension_fix<file_ext_def>, // Same as file (no extension). + nullptr, /* default_extension */ + nullptr, /* pattern */ // Same as file. + &target_print_1_ext_verb, // Same as file. + &file_search, + false + }; + static const char* man_extension (const target_key& tk, const scope*) { |