Files
scst/doc/Makefile
Vladislav Bolkhovitin 9d61dc4b03 Cluster SCSI state sync support
From Bart Van Assche <Bart.VanAssche@sandisk.com>
Prepared with help from Pralay Dakua <Pralay.Dakua@sandisk.com>



git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@6573 d57e44dd-8a1f-0410-8b47-8ef2f437770f
2015-11-06 03:23:46 +00:00

47 lines
908 B
Makefile

SRCS = $(wildcard *.sgml)
TXTS = $(SRCS:.sgml=.txt)
GTXTS = $(SRCS:.sgml=.gtxt)
PDFS = $(SRCS:.sgml=.pdf)
HTMLS = $(SRCS:.sgml=.html)
RTFS = $(SRCS:.sgml=.rtf)
COMMAND=linuxdoc --backend=
all: pdf html
txt: $(TXTS)
gtxt: $(GTXTS)
pdf: $(PDFS)
html: $(HTMLS)
rtf: $(RTFS)
%.txt: %.sgml
$(COMMAND)txt -f $(<)
%.gtxt: %.sgml
$(COMMAND)txt $(<)
%.html: %.sgml
$(COMMAND)html --split=0 $(<)
%.pdf: %.sgml
$(COMMAND)latex -o pdf $(<)
%.rtf: %.sgml
$(COMMAND)rtf $(<)
clean:
mv "Using the DLM as a Distributed In-Memory Database.pdf" "Using the DLM as a Distributed In-Memory Database.pdf_"
rm -f *.txt *.html *.tex *.dvi *.ps *.pdf *.info *.lyx *.rtf
mv "Using the DLM as a Distributed In-Memory Database.pdf_" "Using the DLM as a Distributed In-Memory Database.pdf"
extraclean: clean
rm -f *.orig *.rej
.PHONY: all default html txt gtxt pdf tex dvi ps info lyx rtf check clean extraclean