Skip to content

Commit 9c6ac81

Browse files
committed
Initial import
0 parents  commit 9c6ac81

File tree

281 files changed

+3650
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

281 files changed

+3650
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Icon?
2+
.DS_Store
3+
*.pyc
4+
*~

Makefile

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
MAKE = /usr/bin/make
2+
RST2HTML = rst2html.py
3+
RST2LATEX = rst2latex.py
4+
STYLESHEET = dana.css
5+
RST2HTML_OPTIONS = --strip-comments \
6+
--report=3 \
7+
--stylesheet=$(STYLESHEET) \
8+
--link-stylesheet
9+
RST2LATEX_OPTIONS = --strip-comments \
10+
--report=3 \
11+
--use-latex-toc
12+
13+
SOURCES = $(wildcard *.rst)
14+
HTML_OBJECTS = $(subst .rst,.html, $(SOURCES))
15+
LATEX_OBJECTS = $(subst .rst,.tex, $(SOURCES))
16+
17+
html: $(HTML_OBJECTS)
18+
19+
latex: $(LATEX_OBJECTS)
20+
21+
%.html: %.rst Makefile
22+
@echo " - $@"
23+
@$(RST2HTML) $(RST2HTML_OPTIONS) $< $@
24+
25+
%.tex: %.rst Makefile
26+
@echo " - $@"
27+
@$(RST2LATEX) $(RST2LATEX_OPTIONS) $< $@
28+
29+
clean:
30+
@-rm -f $(LATEX_OBJECTS) $(HTML_OBJECTS)
31+
32+
distclean: clean
33+
@-rm -f `find . -name "*~"`
34+
35+

0 commit comments

Comments
 (0)