Rev 95 | Rev 106 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 95 | Rev 105 | ||
|---|---|---|---|
| Line 73... | Line 73... | ||
| 73 | --stringparam section.autolabel.max.depth 2 \ |
73 | --stringparam section.autolabel.max.depth 2 \ |
| 74 | --stringparam preferred.mediaobject.role html \ |
74 | --stringparam preferred.mediaobject.role html \ |
| 75 | --output $(BUILD_HTML_CHUNKED_DIR)index.html $(DOCBOOK_DIR)html/chunk.xsl src/index.xml |
75 | --output $(BUILD_HTML_CHUNKED_DIR)index.html $(DOCBOOK_DIR)html/chunk.xsl src/index.xml |
| 76 | pdf: imgconvert dblatex-pdf |
76 | pdf: imgconvert dblatex-pdf |
| 77 | imgconvert: |
77 | imgconvert: |
| 78 | cd src/images.vector; ./convert |
78 | cd src/images; ./convert |
| 79 | dblatex-pdf: |
79 | dblatex-pdf: |
| 80 | mkdir -p $(BUILD_PDF_DIR) |
80 | mkdir -p $(BUILD_PDF_DIR) |
| 81 | $(DBLATEX) \ |
81 | $(DBLATEX) \ |
| 82 | -t pdf -T db2latex -f pdf \ |
82 | -t pdf -T db2latex -f pdf \ |
| 83 | -p tools/extra/dblatex-extra.xsl \ |
83 | -p tools/extra/dblatex-extra.xsl \ |
| 84 | -o $(BUILD_PDF_DIR)HelenOS-doc-design.pdf \ |
84 | -o $(BUILD_PDF_DIR)HelenOS-doc-design.pdf \ |
| 85 | src/index.xml |
85 | src/index.xml |
| 86 | fo-pdf: |
86 | fo-pdf: |
| 87 | mkdir -p $(BUILD_PDF_DIR) |
87 | mkdir -p $(BUILD_PDF_DIR) |
| 88 | mkdir -p $(BUILD_PDF_DIR)images.vector |
- | |
| 89 | mkdir -p $(BUILD_PDF_DIR)images |
88 | mkdir -p $(BUILD_PDF_DIR)images |
| 90 | cp src/images.vector/* $(BUILD_PDF_DIR)images.vector |
- | |
| 91 | cp src/images/* $(BUILD_PDF_DIR)images |
89 | cp src/images/* $(BUILD_PDF_DIR)images |
| 92 | xsltproc \ |
90 | xsltproc \ |
| 93 | --stringparam paper.type A4 \ |
91 | --stringparam paper.type A4 \ |
| 94 | --stringparam fop.extensions 1 \ |
92 | --stringparam fop.extensions 1 \ |
| 95 | --stringparam bondari.jimi.compatible 1 \ |
93 | --stringparam bondari.jimi.compatible 1 \ |
| Line 104... | Line 102... | ||
| 104 | 102 | ||
| 105 | distclean: clean |
103 | distclean: clean |
| 106 | 104 | ||
| 107 | clean: |
105 | clean: |
| 108 | rm -rf build |
106 | rm -rf build |
| 109 | rm -rf src/images.vector/*.pdf |
107 | rm -rf src/images/*.pdf |
| 110 | rm -rf src/images.vector/*.eps |
108 | rm -rf src/images/*.eps |
| - | 109 | rm -rf src/images/*.png |
|