diff options
Diffstat (limited to 'model_8/Makefile')
-rwxr-xr-x | model_8/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/model_8/Makefile b/model_8/Makefile new file mode 100755 index 0000000..091ac60 --- /dev/null +++ b/model_8/Makefile @@ -0,0 +1,12 @@ +include ../common/Makefile.common +TEX=lualatex + +tmp/%.tex: %.rst $(INCLUDED_TEX) $(SOURCES) | tmp + $$(command -v rst2latex rst2latex.py | head -n 1) \ + --no-section-numbering \ + --table-style=booktabs \ + --documentclass=article \ + --documentoption=12pt,A4,table \ + --syntax-highlight=short \ + --stylesheet=$(PACKAGES),$(TEX_STYLE) \ + $< $@ |