summaryrefslogtreecommitdiffstats
path: root/docs/lasso-book/Makefile.am
blob: 6025af9eae1e281a334a41dd07233424852936c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
SUBDIRS = figures

docdir = $(datadir)/doc/lasso

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

if HAVE_REST2HTML
doc_DATA = writing-a-c-sp.html book.html
else
doc_DATA = writing-a-c-sp.txt $(LASSOBOOK_FILES)
endif

%.html: %.txt
	$(REST2HTML) $? > $@

%.html: %.rst
	$(REST2HTML) $? > $@

CLEANFILES = writing-a-c-sp.html book.html
EXTRA_DIST = lasso-book.txt writing-a-c-sp.txt $(LASSOBOOK_FILES)