index.adoc ---------- Guide ===== Product Security :Email: @redhat.com :PS: Product Security image::images/redhat.svg[align="center",height=100] The {PS} Guide describes... Preface ------- {PS} are responsible... We Need Feedback! ~~~~~~~~~~~~~~~~~ If you spot a typographical error in this material, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in RT by emailing: secalert@redhat.com. If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily. include::one.adoc[] include::two.adoc[] include::three.adoc[] include::four.adoc[] include::five.adoc[] END OF INDEX.ADOC Makefile -------- REPO = $(shell basename `pwd`) DESTDIR = /var/www/html/docs/$(REPO) ASCIIDOC_ARGS = -b html5 -a theme=prodsec -a icons -a toc2 -n .PHONY: pdf html: asciidoc -o index.html $(ASCIIDOC_ARGS) index.adoc pdf: html wkhtmltopdf index.html Guide.pdf all: pdf clean: find ./ \( -name '*.html' -o -name '*.pdf' \) -exec rm -f {} \; install: @cp -f index.html $(DESTDIR)/ @cp -a images $(DESTDIR)/ @cp -a Guide.pdf $(DESTDIR)/ END OF MAKEFILE