10 lines
No EOL
216 B
Makefile
10 lines
No EOL
216 B
Makefile
# Define required macros here
|
|
SHELL = /bin/bash
|
|
|
|
FILE = procedure
|
|
|
|
all:
|
|
pandoc -s -N --template=template.latex ${FILE}.md -o ${FILE}.pdf
|
|
|
|
toc:
|
|
pandoc --toc -s -N --template=template.latex ${FILE}.md -o ${FILE}.pdf
|