# Makefile for SDP docs from AsciiDoctor format # To HTML and PDF SRC = $(wildcard *.adoc) PDF = $(SRC:.adoc=.pdf) HTML = $(SRC:.adoc=.html) POD_HTML = JobIncrement.html all: $(PDF) $(HTML) $(POD_HTML) # Add dependencies for included HTML. Unsupported_SDP.adoc: JobIncrement.html # General rule for building *.pdf from *.adoc. %.pdf: %.adoc rm -f $@ asciidoctor-pdf -a pdf-themesdir=themes -a pdf-theme=basic $^ # General rule for building *.html from *.adoc. %.html: %.adoc rm -f $@ asciidoctor $^ # Specific Rule for script with HTML built from pod2html. JobIncrement.html: ../Samples/triggers/JobIncrement.pl rm -f $@ pod2html $^ > $@ rm -f pod2*.tmp .PHONY: clean clean: rm -f $(PDF) $(HTML) $(POD_HTML)
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#4 | 27727 | C. Thomas Tyler |
Refined docs for Unsupported scripts. Enhanced Unsupported doc Makefile to handle pod2html doc. Re-generated PDF and HTML docs. |
||
#3 | 27726 | C. Thomas Tyler |
Generated HTML and PDF from adoc for Unsupported folder. Corrected Makefile so 'make clean' also removes *.html files. Added missing doc tags in CheckCaseTrigger.py. |
||
#2 | 26885 | C. Thomas Tyler |
Removed obsolete README.txt file, and put useful bits of its content into Unsupported_SDP.adoc. Removed excess general SDP content from Unsupported_SDP.adoc. Enhanced Makefile for AsciiDocc to support building individual targets, and also incrementally build only what's needed. |
||
#1 | 26681 | Robert Cowham |
Removing Deprecated folder - if people want it they can look at past history! All functions have been replaced with standard functionality such as built in LDAP, or default change type. Documentation added for the contents of Unsupported folder. Changes to scripts/triggers are usually to insert tags for inclusion in ASCII Doctor docs. |