Skip to content

Commit 6308ec2

Browse files
authored
Merge pull request #40 from simo5/md_order_in_file
Control spec file order with an explicit list approved oct 8
2 parents e8a56b8 + 2167cf0 commit 6308ec2

File tree

119 files changed

+122
-3
lines changed

Some content is hidden

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

119 files changed

+122
-3
lines changed

working/doc/spec/Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
INPUT_FILES = $(shell cat spec_files.txt)
2+
13
all: docs
24

35
.PHONY: all build html pdf
@@ -13,7 +15,7 @@ html:
1315
--variable toc-title:"Table of Contents" \
1416
--highlight-style code.theme \
1517
-o pkcs-spec-v3.3.html \
16-
[0-9]*md
18+
$(INPUT_FILES)
1719

1820
pdf:
1921
pandoc -s \
@@ -31,7 +33,7 @@ pdf:
3133
--pdf-engine=lualatex \
3234
--highlight-style code.theme \
3335
-o pkcs-spec-v3.3.pdf \
34-
[0-9]*md
36+
$(INPUT_FILES)
3537

3638
latex:
3739
pandoc -s \
@@ -49,6 +51,6 @@ latex:
4951
--pdf-engine=lualatex \
5052
--highlight-style code.theme \
5153
-o pkcs-spec-v3.3.latex \
52-
[0-9]*md
54+
$(INPUT_FILES)
5355
clean:
5456
-rm -rf *.html *.pdf *.latex

0 commit comments

Comments
 (0)