lasso/docs/lasso-book/Makefile.am

36 lines
908 B
Makefile
Raw Normal View History

MAINTAINERCLEANFILES = Makefile.in
if HAVE_INKSCAPE
if HAVE_XSLTPROC
SUBDIRS = figures
endif
endif
2004-08-19 21:25:34 +02:00
docdir = $(datadir)/doc/lasso
2004-08-16 16:21:57 +02:00
2004-08-26 15:18:39 +02:00
LASSOBOOK_FILES = book.rst common-knowledge.rst getting-lasso.rst \
integration.rst language-bindings.rst lasso-architecture.rst \
liberty-architecture.rst other-profiles.rst preface.rst \
single-sign-on.rst
SP_DOC_FILES = writing-a-c-sp.txt writing-a-php-sp.txt writing-a-java-sp.txt \
writing-a-saml2-php-sp.txt
2006-10-28 17:17:21 +02:00
SP_DOC_HTML = writing-a-c-sp.html writing-a-php-sp.html writing-a-java-sp.html \
writing-a-saml2-php-sp.html
2006-10-28 17:17:21 +02:00
2004-08-16 16:21:57 +02:00
if HAVE_REST2HTML
2006-10-28 17:17:21 +02:00
doc_DATA = $(SP_DOC_HTML) book.html
2004-08-16 16:21:57 +02:00
else
2006-10-28 17:17:21 +02:00
doc_DATA = $(SP_DOC_FILES) $(LASSOBOOK_FILES)
2004-08-16 16:21:57 +02:00
endif
%.html: %.txt
2006-10-28 17:17:21 +02:00
$(REST2HTML) --stylesheet=default.css --link-stylesheet $? > $@
2004-08-16 16:21:57 +02:00
2004-08-26 15:18:39 +02:00
%.html: %.rst
$(REST2HTML) $? > $@
2006-10-28 17:17:21 +02:00
CLEANFILES = $(SP_DOC_HTML) book.html
EXTRA_DIST = lasso-book.txt $(LASSOBOOK_FILES) $(SP_DOC_FILES)