Skip to content

Commit

Permalink
Publish LaTeX as part of the demo
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Mar 2, 2022
1 parent c1b27da commit d61d1af
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -147,13 +147,18 @@ DOORSTOP := poetry run doorstop
YAML := $(wildcard */*.yml */*/*.yml */*/*/*/*.yml)

.PHONY: reqs
reqs: doorstop reqs-html reqs-md reqs-txt
reqs: doorstop reqs-html reqs-latex reqs-md reqs-txt

.PHONY: reqs-html
reqs-html: install docs/gen/*.html
docs/gen/*.html: $(YAML)
$(DOORSTOP) publish all docs/gen --html

.PHONY: reqs-latex
reqs-latex: install docs/gen/*.tex
docs/gen/*.tex: $(YAML)
$(DOORSTOP) publish all docs/gen --latex

.PHONY: reqs-md
reqs-md: install docs/gen/*.md
docs/gen/*.md: $(YAML)
Expand Down

0 comments on commit d61d1af

Please sign in to comment.