blob: 3c762cd1ea4cedc14a1861a0e68c52cf820395fd (
plain)
1
2
3
4
5
6
7
8
9
10
|
SPEC = spec.pdf
all: $(SPEC)
spec.pdf: spec.md firrtl.xml spec-template.tex firrtl.xml ebnf.xml
pandoc $< --template spec-template.tex --syntax-definition firrtl.xml --syntax-definition ebnf.xml -r markdown+table_captions+inline_code_attributes+gfm_auto_identifiers --filter pandoc-crossref -o $@
clean:
rm -f *.aux *.log *.out *.toc *.pdf
|