Merge pull request #65 from wilhelmtell/topic/make_targets

make: fix dirty check, support concurrent build
This commit is contained in:
Byungjin Park 2016-08-10 01:29:07 +09:00 committed by GitHub
commit 7312b56929

View file

@ -1,3 +1,6 @@
.PHONY: examples
test:
cd examples/ ; for f in *.tex; do xelatex $$f; done
examples: $(foreach x,coverletter cv resume,examples/$x.pdf)
%.pdf: %.tex
xelatex -output-directory=$(dir $@) $<