add makefile in cache tests

This commit is contained in:
Maximilian Keßler 2022-02-03 15:05:45 +01:00
parent 3c2e68f574
commit b15dedb366

9
tests/wip/cache/Makefile vendored Normal file
View File

@ -0,0 +1,9 @@
all: clean pdf
pdf:
pdflatex test.tex
clean:
rm -f test.aux
.PHONY: all pdf clean