diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-05-31 00:50:02 +0000 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-05-31 00:50:02 +0000 |
commit | e567060518a0bb17099bb59755d5d17c4cf55dcf (patch) | |
tree | f8e0faaa05aea78c0c31732df13575bb0bcc181c /Master/texmf-dist/source/luatex/luaotfload/Makefile | |
parent | d3d35c48fcf4ab71ef5406e58de150bbe08d8c7d (diff) |
luaotfload update (1.09)
git-svn-id: svn://tug.org/texlive/trunk@18630 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/luatex/luaotfload/Makefile')
-rw-r--r-- | Master/texmf-dist/source/luatex/luaotfload/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Master/texmf-dist/source/luatex/luaotfload/Makefile b/Master/texmf-dist/source/luatex/luaotfload/Makefile index 488537445c3..2f38501ec9c 100644 --- a/Master/texmf-dist/source/luatex/luaotfload/Makefile +++ b/Master/texmf-dist/source/luatex/luaotfload/Makefile @@ -12,6 +12,10 @@ UNPACKED = luaotfload.sty luaotfload.lua GENERATED = $(COMPILED) $(UNPACKED) SOURCE = $(DTX) $(OTFL) README Makefile NEWS $(SCRIPT) +# test files +TESTDIR = tests +TESTFILES = $(wildcard $(TESTDIR)/*.tex) + # Files grouped by installation location SCRIPTFILES = $(SCRIPT) RUNFILES = $(UNPACKED) $(OTFL) @@ -41,7 +45,7 @@ DO_MAKEINDEX = makeindex -s gind.ist $(subst .dtx,,$<) >/dev/null 2>&1 all: $(GENERATED) doc: $(COMPILED) unpack: $(UNPACKED) -ctan: $(CTAN_ZIP) +ctan: check $(CTAN_ZIP) tds: $(TDS_ZIP) world: all ctan @@ -80,6 +84,12 @@ install: $(ALL_FILES) @echo "Installing in '$(TEXMFROOT)'." $(run-install) +check: $(RUNFILES) $(TESTFILES) + @for f in $(TESTFILES); do \ + echo "check: luatex $$f"; \ + luatex --interaction=batchmode $$f > /dev/null || exit $$?; \ + done + manifest: @echo "Source files:" @for f in $(SOURCE); do echo $$f; done |