1
0
mirror of synced 2024-06-02 09:08:08 +02:00
avremu/Makefile
Christian Dietrich 8d320f3744 Use TDS Layout
2014-10-09 15:20:20 +02:00

13 lines
289 B
Makefile

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