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

13 lines
289 B
Makefile
Raw Normal View History

2014-10-09 15:20:20 +02:00
export TEXINPUTS := $(shell pwd)//:${TEXINPUTS}
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