diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-05-30 18:05:03 +0200 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-05-30 18:05:03 +0200 |
commit | dd12ed812b0766956878386ba00d96cdeb91a45c (patch) | |
tree | 8e5b8626d3fbca253c482ad338374b162f1302e9 /Makefile | |
parent | 115b43ebb567886a5cf2c58da47fd5b87b69e7d7 (diff) | |
download | luaotfload-dd12ed812b0766956878386ba00d96cdeb91a45c.tar.gz |
tune "make check"
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -87,7 +87,8 @@ install: $(ALL_FILES) check: $(RUNFILES) $(TESTFILES) @for f in $(TESTFILES); do \ echo "check: luatex $$f"; \ - luatex --interaction=batchmode $$f > /dev/null || exit $$?; \ + luatex --interaction=batchmode --output-directory $(TESTDIR) $$f \ + > /dev/null || exit $$?; \ done manifest: @@ -98,8 +99,8 @@ manifest: @for f in $(GENERATED); do echo $$f; done clean: - @$(RM) -- *.log *.aux *.toc *.idx *.ind *.ilg *.out + @$(RM) -- *.log *.aux *.toc *.idx *.ind *.ilg *.out $(TESTDIR)/*.log mrproper: clean - @$(RM) -- $(GENERATED) $(ZIPS) + @$(RM) -- $(GENERATED) $(ZIPS) $(TESTDIR)/*.pdf |