diff options
author | Richard Levitte <levitte@openssl.org> | 2021-02-04 15:32:37 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2021-02-05 15:51:31 +0100 |
commit | 9ca08f91e9817892c3545612a91d38687e593e14 (patch) | |
tree | 2b53b5fa70aaa7a2ac776e2f63fedbdf6143a25c /doc/build.info | |
parent | DOCS: Remove the "global" dependency on writing .pod files from .pod.in (diff) | |
download | openssl-9ca08f91e9817892c3545612a91d38687e593e14.tar.xz openssl-9ca08f91e9817892c3545612a91d38687e593e14.zip |
Makefile template: Allow separate generation of .pod.in -> .pod
We do this by adding the attribute 'pod' to all .pod.in -> .pod
generations, like this:
DEPEND[NAME.pod]{pod}=NAME.pod.in,
... and selecting out the target files for those dependencies into a
dedicated target 'build_generated_pods', which the 'doc-nits' and
'cmd-nits' make targets are made to depend on.
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14067)
Diffstat (limited to 'doc/build.info')
-rw-r--r-- | doc/build.info | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/build.info b/doc/build.info index 83da34ee29..267629040d 100644 --- a/doc/build.info +++ b/doc/build.info @@ -56,6 +56,7 @@ DEPEND[$manfile]=$podfile GENERATE[$manfile]=$podfile _____ $OUT .= << "_____" if $podinfile; +DEPEND[$podfile]{pod}=$podinfile GENERATE[$podfile]=$podinfile _____ } |