Skip to content

Commit 00f22bc

Browse files
committed
Add PDF output generation to Makefile
1 parent 38fccc0 commit 00f22bc

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
jsonschema-*.html
2+
jsonschema-*.pdf
23
jsonschema-*.txt
34
relative-json-pointer.html
5+
relative-json-pointer.pdf
46
relative-json-pointer.txt

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@ all: $(OUT)
1111
%.txt: %.xml
1212
$(XML2RFC) --text $< -o $@
1313

14+
%.pdf: %.xml
15+
$(XML2RFC) --pdf $< -o $@
16+
1417
%.html: %.xml
1518
$(XML2RFC) --html $< -o $@
1619

1720
json-schema.tar.gz: $(OUT)
21+
test ! -e json-schema
1822
mkdir json-schema
1923
git clone . json-schema
2024
(cd json-schema && make)

0 commit comments

Comments
 (0)