source: trunk/doc/Makefile.am @ 20

Revision 20, 1.4 KB checked in by mmatloka, 14 years ago (diff)

svn:keywords

  • Property svn:keywords set to Id Revision
Line 
1# $Id$
2#
3# PSNC DRMAA for LoadLeveler
4# Copyright (C) 2010 Poznan Supercomputing and Networking Center
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10#    http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18
19DOCUTILSFLAGS = \
20 -i utf-8 \
21 -o utf-8 \
22 --language=en \
23 --file-insertion-enabled \
24 --no-generator \
25 --tab-width=4
26RST2HTMLFLAGS = $(DOCUTILSFLAGS) \
27 --stylesheet=stylesheet.css \
28 --link-stylesheet
29RST2LATEXFLAGS = $(DOCUTILSFLAGS) \
30 --documentclass=article \
31 --documentoptions=a4paper,10pt \
32 --font-encoding=OT4 \
33 --graphicx-option=pdftex \
34 --use-latex-footnotes \
35 --footnote-references=superscript \
36 --use-latex-citations \
37 --use-latex-toc
38
39readme.html: $(top_srcdir)/README
40        $(RST2HTML) $(RST2HTMLFLAGS) $< $@
41readme.tex: $(top_srcdir)/README
42        $(RST2LATEX) $(RST2LATEXFLAGS) $< $@
43.tex.pdf:
44        pdflatex $< && pdflatex $<
45
46noinst_DATA = readme.html readme.pdf
47EXTRA_DIST = readme.html readme.tex readme.pdf
48
49clean-local:
50        -rm -rf *.log *.aux *.toc *.out
51MAINTAINERCLEANFILES = readme.html readme.tex readme.pdf
52
Note: See TracBrowser for help on using the repository browser.