Makefile #3

  • //
  • guest/
  • perforce_software/
  • sdp/
  • dev/
  • Unsupported/
  • doc/
  • Makefile
  • View
  • Commits
  • Open Download .zip Download (322 B)
# Makefile for SDP docs from AsciiDoctor format 
# To HTML and PDF

SRC = $(wildcard *.adoc)

PDF = $(SRC:.adoc=.pdf)

HTML = $(SRC:.adoc=.html)

%.pdf: %.adoc
	asciidoctor-pdf -a pdf-themesdir=themes -a pdf-theme=basic $^ 

%.html: %.adoc
	asciidoctor $^

all:	$(PDF) $(HTML)

.PHONY: clean

clean:
	rm -f $(PDF) $(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.