Revert "Remove 0.9.8/1.0.0 source downloads"
[openssl-web.git] / Makefile
index 404248cfcd5ad6e81018c6757d53bd9e5d82dc6c..9da824fa4fc9842a79b2eeee0d3daa2661c12e99 100644 (file)
--- a/Makefile
+++ b/Makefile
 ##
-##  Makefile -- Top-level build procedure for www.openssl.org
-##
+## Build procedure for www.openssl.org
+
+##  Checkouts.
+CHECKOUTS = /var/cache/openssl/checkouts
+##  Snapshot directory
+SNAP = $(CHECKOUTS)/openssl
+## Where releases are found.
+RELEASEDIR = /var/www/openssl/source
+
+
+# All simple generated files.
+SIMPLE = newsflash.inc sitemap.txt \
+        docs/faq.inc docs/fips.inc \
+        news/changelog.inc news/changelog.txt \
+        news/cl101.txt news/cl102.txt \
+        news/openssl-1.0.1-notes.inc news/openssl-1.0.2-notes.inc \
+        news/openssl-1.1.0-notes.inc \
+        news/newsflash.inc \
+        news/vulnerabilities.inc \
+        source/.htaccess \
+        source/license.txt \
+        source/index.inc
+SRCLISTS = \
+          source/old/0.9.x/index.inc \
+          source/old/1.0.0/index.inc \
+          source/old/1.0.1/index.inc \
+          source/old/1.0.2/index.inc \
+          source/old/1.1.0/index.inc \
+          source/old/fips/index.inc \
+
+all: $(SIMPLE) $(SRCLISTS) manmaster
+
+relupd: all manpages
+
+define makemanpages
+       ./bin/mk-manpages $(1) $(2) docs
+       ./bin/mk-filelist -a docs/man$(2)/apps '' '*.html' >docs/man$(2)/apps/index.inc
+       ./bin/mk-filelist -a docs/man$(2)/crypto '' '*.html' >docs/man$(2)/crypto/index.inc
+       ./bin/mk-filelist -a docs/man$(2)/ssl '' '*.html' >docs/man$(2)/ssl/index.inc
+endef
+manpages: manmaster
+       $(call makemanpages,$(CHECKOUTS)/openssl-1.0.2-stable,1.0.2)
+       $(call makemanpages,$(CHECKOUTS)/openssl-1.0.1-stable,1.0.1)
 
-# Used to have a hack with a lockfile.
-# Not needed since this is fast now.
+manmaster:
+       $(call makemanpages,$(CHECKOUTS)/openssl,master)
 
-SNAP=/v/openssl/checkouts/openssl
-PODSHOME=$(SNAP)/doc
+# Legacy targets
+hack-source_htaccess: all
+simple: all
+generated: all
+rebuild: all
 
-FORCE=#-f
-QUIET=--quiet
+clean:
+       rm -f $(SIMPLE) $(SRCLISTS)
 
-DIRS= about docs news source support
+newsflash.inc: news/newsflash.inc
+       @rm -f $@
+       head -6 $? >$@
+sitemap.txt:
+       @rm -f $@
+       ./bin/mk-sitemap >$@
 
-all: simple manpages
+news/changelog.inc: news/changelog.txt bin/mk-changelog
+       @rm -f $@
+       ./bin/mk-changelog <news/changelog.txt >$@
+news/changelog.txt: $(SNAP)/CHANGES
+       @rm -f $@
+       cp $? $@
+news/cl101.txt: $(CHECKOUTS)/openssl-1.0.1-stable/CHANGES
+       @rm -f $@
+       cp $? $@
+news/cl102.txt: $(CHECKOUTS)/openssl-1.0.2-stable/CHANGES
+       @rm -f $@
+       cp $? $@
 
-simple: generated
-       wmk $(FORCE) -I $(SNAP) -a $(DIRS) index.wml
+news/openssl-1.0.1-notes.html: news/openssl-notes.html.in
+       @rm -f $@
+       sed -e 's|@VERSION@|1.0.1|g' < $< > $@
+news/openssl-1.0.2-notes.html: news/openssl-notes.html.in
+       @rm -f $@
+       sed -e 's|@VERSION@|1.0.2|g' < $< > $@
+news/openssl-1.1.0-notes.html: news/openssl-notes.html.in
+       @rm -f $@
+       sed -e 's|@VERSION@|1.1.0|g' < $< > $@
+news/openssl-1.0.1-notes.inc: $(CHECKOUTS)/openssl-1.0.1-stable/NEWS news/openssl-1.0.1-notes.html
+       @rm -f $@
+       ./bin/mk-notes 1.0.1 < $(CHECKOUTS)/openssl-1.0.1-stable/NEWS > $@
+news/openssl-1.0.2-notes.inc: $(CHECKOUTS)/openssl-1.0.2-stable/NEWS news/openssl-1.0.2-notes.html
+       @rm -f $@
+       ./bin/mk-notes 1.0.2 < $(CHECKOUTS)/openssl-1.0.2-stable/NEWS > $@
+news/openssl-1.1.0-notes.inc: $(CHECKOUTS)/openssl/NEWS news/openssl-1.1.0-notes.html
+       @rm -f $@
+       ./bin/mk-notes 1.1.0 < $(CHECKOUTS)/openssl/NEWS > $@
 
-manpages:
-       sh ./run-pod2html.sh $(PODSHOME)
+news/newsflash.inc: news/newsflash.txt
+       sed <$? >$@ \
+           -e '/^#/d' \
+           -e 's@^@<tr><td class="d">@' \
+           -e 's@: @</td><td class="t">@' \
+           -e 's@$$@</td></tr>@'
+news/vulnerabilities.inc: bin/vulnerabilities.xsl news/vulnerabilities.xml
+       @rm -f $@
+       xsltproc bin/vulnerabilities.xsl news/vulnerabilities.xml >$@
 
-generated:
-       cp -f $(SNAP)/LICENSE source/license.inc
-       cp -f $(PODSHOME)/HOWTO/*.txt docs/HOWTO/.
-       perl run-changelog.pl <$(SNAP)/CHANGES >news/changelog.inc
-       perl run-faq.pl <$(SNAP)/FAQ >support/faq.inc
-       perl run-fundingfaq.pl < support/funding/support-faq.txt >support/funding/support-faq.inc
-       ( cd news && xsltproc vulnerabilities.xsl vulnerabilities.xml > vulnerabilities.wml )
+docs/faq.inc: docs/faq.txt
+       @rm -f $@
+       ./bin/mk-faq <$? >$@
+docs/fips.inc: $(wildcard docs/fips/*)
+       @rm -f $@
+       ./bin/mk-filelist docs/fips fips/ '*' >$@
 
-# Update release notes (and other items, but relnotes is the use-case)
-relupd:
-       id | grep -q root || { echo you must sudo ; exit 1; }
-       ( cd $(SNAP)/.. ; for dir in openssl* ; do \
-               echo Updating $$dir ; cd $$dir ; sudo -u openssl git pull $(QUIET) ; cd .. ; \
-               done )
-       sudo -u www-data git pull $(QUIET)
-       sudo -u www-data $(MAKE) simple
+source/.htaccess: $(wildcard source/openssl-*.tar.gz)
+       @rm -f @?
+       ./bin/mk-latest source >$@
+source/license.txt: $(SNAP)/LICENSE
+       @rm -f $@
+       cp $? $@
+source/index.inc: $(wildcard $(RELEASEDIR)/openssl-*.tar.gz)
+       @rm -f $@
+       ./bin/mk-filelist -a $(RELEASEDIR) '' 'openssl-*.tar.gz' >$@
 
+source/old/0.9.x/index.inc: $(wildcard source/old/0.9.x/*.gz)
+       @rm -f $@
+       ./bin/mk-filelist source/old/0.9.x '' '*.gz' >$@
+source/old/1.0.0/index.inc: $(wildcard source/old/1.0.0/*.gz)
+       @rm -f $@
+       ./bin/mk-filelist source/old/1.0.0 '' '*.gz' >$@
+source/old/1.0.1/index.inc: $(wildcard source/old/1.0.1/*.gz)
+       @rm -f $@
+       ./bin/mk-filelist source/old/1.0.1 '' '*.gz' >$@
+source/old/1.0.2/index.inc: $(wildcard source/old/1.0.2/*.gz)
+       @rm -f $@
+       ./bin/mk-filelist source/old/1.0.2 '' '*.gz' >$@
+source/old/1.1.0/index.inc: $(wildcard source/old/1.1.0/*.gz)
+       @rm -f $@
+       ./bin/mk-filelist source/old/1.0.2 '' '*.gz' >$@
+source/old/fips/index.inc: $(wildcard source/old/fips/*.gz)
+       @rm -f $@
+       ./bin/mk-filelist source/old/fips '' '*.gz' >$@
 
+# Because these the indexes of old tarballs will inevitably be newer
+# than the tarballs that are moved into their respective directory,
+# we must declare them phony, or they will not be regenerated when
+# they should.
+.PHONY : \
+        source/old/1.0.1/index.inc source/old/1.0.2/index.inc \
+        source/old/fips/index.inc