1
0
mirror of synced 2024-06-10 12:59:54 +02:00
avremu/Makefile
2014-10-09 17:30:00 +02:00

16 lines
346 B
Makefile

export TEXINPUTS := $(shell pwd)//:${TEXINPUTS}
doc:
cd source; latexmk -pdf -shell-escape avremu
test: test-simple
cd source/test-suite; ./test-suite
test-simple: source/simple-testsuite.tex
pdflatex -halt-on-error $<
test-%: source/test-suite/%.c
cd source/test-suite; ./test-suite single $(shell basename $<)
.PHONY: test-simple doc