-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganize the directory structure to put the template and XML syntax highlighting files into a new directory "include/". Change the build to write to a "build/" directory instead of the root directory. Signed-off-by: Schuyler Eldridge <[email protected]>
- Loading branch information
Showing
5 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
|
||
SPEC = spec.pdf | ||
all: build/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 $@ | ||
build/spec.pdf: spec.md include/spec-template.tex include/firrtl.xml include/ebnf.xml | build/ | ||
pandoc $< --template include/spec-template.tex --syntax-definition include/firrtl.xml --syntax-definition include/ebnf.xml -r markdown+table_captions+inline_code_attributes+gfm_auto_identifiers --filter pandoc-crossref -o $@ | ||
|
||
clean: | ||
rm -f *.aux *.log *.out *.toc *.pdf | ||
rm -rf build | ||
|
||
%/: | ||
mkdir $@ |
File renamed without changes.
File renamed without changes.
File renamed without changes.