diff options
| author | Chris McDonough <chrism@plope.com> | 2011-07-21 23:44:38 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-07-21 23:44:38 -0400 |
| commit | 2519ab7cf207c529b0014927ff02179e2ffd3355 (patch) | |
| tree | 23dc58cc573cbb07e93e76696d5f32b473a2fc63 | |
| parent | 8c03444dd5d80adaf65e30ebdabf1e6dde644965 (diff) | |
| download | pyramid-2519ab7cf207c529b0014927ff02179e2ffd3355.tar.gz pyramid-2519ab7cf207c529b0014927ff02179e2ffd3355.tar.bz2 pyramid-2519ab7cf207c529b0014927ff02179e2ffd3355.zip | |
add epub and pdf maker scripts
| -rwxr-xr-x | docs/make_epub | 2 | ||||
| -rwxr-xr-x | docs/make_pdf | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/make_epub b/docs/make_epub new file mode 100755 index 000000000..868749e3b --- /dev/null +++ b/docs/make_epub @@ -0,0 +1,2 @@ +#!/bin/sh +make clean epub SPHINXBUILD=../env26/bin/sphinx-build diff --git a/docs/make_pdf b/docs/make_pdf new file mode 100755 index 000000000..558feb857 --- /dev/null +++ b/docs/make_pdf @@ -0,0 +1,4 @@ +#!/bin/sh +make clean latex SPHINXBUILD=../env26/bin/sphinx-build +cd _build/latex && make all-pdf + |
