summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorManuel Pégourié-Gonnard <mpg@elzevir.fr>2010-03-27 19:04:41 +0100
committerManuel Pégourié-Gonnard <mpg@elzevir.fr>2010-03-27 19:04:41 +0100
commit34b29e403d015b1ba2ba08d9a4502d044293cf52 (patch)
tree732a6a72fa982622fbab0ccd6571b83a9bc70819 /Makefile
parent86a8b1f74fad27b60acb9a14f0ad74a0f020885a (diff)
parentbbade272c39f4925130374c026bdc27af7189013 (diff)
downloadluatexbase-34b29e403d015b1ba2ba08d9a4502d044293cf52.tar.gz
Merge branch 'master' into unstable
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 12 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3302117..3e7cb5a 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,10 @@ UNPACKED_ATTR = luatexbase-attr.sty luatexbase.attr.lua \
test-attr-plain.tex test-attr-latex.tex
UNPACKED_CCTB = luatexbase-cctb.sty luatexbase.cctb.lua \
test-cctb-plain.tex test-cctb-latex.tex
-UNPACKED = $(UNPACKED_MCB) $(UNPACKED_REGS) $(UNPACKED_ATTR) $(UNPACKED_CCTB)
+UNPACKED_LOADER = luatexbase-loader.sty luatexbase.loader.lua \
+ test-loader-plain.tex test-loader-latex.tex
+UNPACKED = $(UNPACKED_MCB) $(UNPACKED_REGS) $(UNPACKED_ATTR) $(UNPACKED_CCTB) \
+ $(UNPACKED_LOADER)
COMPILED = $(DOC)
GENERATED = $(COMPILED) $(UNPACKED)
SOURCE = $(DTX) $(DTXSTY) README TODO Changes Makefile
@@ -44,7 +47,7 @@ DO_MAKEINDEX = makeindex -s gind.ist $(subst .dtx,,$<) >/dev/null 2>&1
# Main targets definition
all: $(GENERATED)
-check: check-regs check-attr check-cctb
+check: check-regs check-attr check-cctb check-load
doc: $(COMPILED)
unpack: $(UNPACKED)
ctan: check $(CTAN_ZIP)
@@ -69,6 +72,9 @@ $(UNPACKED_ATTR): luatexbase-attr.dtx
$(UNPACKED_CCTB): luatexbase-cctb.dtx
$(DO_TEX)
+$(UNPACKED_LOADER): luatexbase-loader.dtx
+ $(DO_TEX)
+
check-regs: $(UNPACKED_REGS)
luatex --interaction=batchmode test-regs-plain.tex >/dev/null
lualatex --interaction=batchmode test-regs-latex.tex >/dev/null
@@ -81,6 +87,10 @@ check-cctb: $(UNPACKED_CCTB)
luatex --interaction=batchmode test-cctb-plain.tex >/dev/null
lualatex --interaction=batchmode test-cctb-latex.tex >/dev/null
+check-loader: $(UNPACKED_LOADER)
+ luatex --interaction=batchmode test-loader-plain.tex >/dev/null
+ lualatex --interaction=batchmode test-loader-latex.tex >/dev/null
+
$(CTAN_ZIP): $(SOURCE) $(COMPILED) $(TDS_ZIP)
@echo "Making $@ for CTAN upload."
@$(RM) -- $@