Template
mirror of
https://github.com/kenryuS/report-temp.git
synced 2026-08-13 20:51:42 +09:00
10 lines
149 B
Makefile
10 lines
149 B
Makefile
PANDOC:=pandoc
|
|
TEX:=lualatex
|
|
|
|
OUTPUT:=./out
|
|
|
|
all: report.pdf
|
|
|
|
%.pdf: %.md
|
|
pandoc --from markdown --to pdf -o ${OUTPUT}/$@ $^ --pdf-engine=${TEX} -N
|