Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/web.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2022-10-12 10:06:51 +0300
committerRichard Levitte <levitte@openssl.org>2022-10-12 10:06:51 +0300
commit3397d021f6316bf7605753ceb135d624071f27d0 (patch)
treed99ab8107e0354caef157983f5a39d783068413a
parent2b8c7b112fc03cefe76266bb6c146842fd283d84 (diff)
We have policy-supplementals, let's render them
Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/web/pull/368)
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index c63b815..819cef9 100644
--- a/Makefile
+++ b/Makefile
@@ -72,6 +72,9 @@ H_POLICIES = $(addsuffix .html,\
$(basename $(shell git ls-files -- policies/*.md \
policies/general/*.md \
policies/technical/*.md)))
+H_POLICY_SUPPL = $(addsuffix .html,\
+ $(basename $(shell git ls-files -- \
+ policies/policy-supplemental/*.md)))
# We filter out any file starting with 'sub-'... they get special treatment
H_SOURCE= $(addsuffix .html,\
$(basename $(shell git ls-files -- source/*.md \
@@ -98,6 +101,7 @@ SIMPLE = $(H_TOP) \
$(foreach S,$(SERIES) $(OLDSERIES),news/vulnerabilities-$(S).inc) \
$(foreach S,$(SERIES) $(OLDSERIES),news/vulnerabilities-$(S).html) \
$(H_POLICIES) \
+ $(H_POLICY_SUPPL) \
policies/glossary.html \
$(H_SOURCE) \
source/.htaccess \