6 lines
124 B
Makefile
6 lines
124 B
Makefile
all: report.pdf handin.zip
|
|
report.pdf: report.md
|
|
pandoc $< -o $@ --pdf-engine typst
|
|
handin.zip: *.py report.pdf
|
|
zip $@ $^
|