summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorManuel Pégourié-Gonnard <mpg@elzevir.fr>2010-11-04 21:25:45 +0100
committerManuel Pégourié-Gonnard <mpg@elzevir.fr>2010-11-04 21:27:29 +0100
commite7bfa4a4d665ecf35852aa978f385a2cf38feeec (patch)
tree28d2a0315d1f99fff5f407a4b18736b01f717c03 /Makefile
parente5f056542ee264650214108b3f88c913dd981707 (diff)
downloadluatexbase-e7bfa4a4d665ecf35852aa978f385a2cf38feeec.tar.gz
Add a test file for base.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 8c82909..3e56d17 100644
--- a/Makefile
+++ b/Makefile
@@ -21,10 +21,10 @@ UNPACKED_MODUTILS = luatexbase-modutils.sty modutils.lua test-modutils.lua \
test-modutils-plain.tex test-modutils-latex.tex
UNPACKED_COMPAT = luatexbase-compat.sty \
test-compat-plain.tex test-compat-latex.tex
-UNPACKED_CORE = luatexbase.sty
+UNPACKED_BASE = luatexbase.sty test-base-plain.tex test-base-latex.tex
UNPACKED = $(UNPACKED_MCB) $(UNPACKED_REGS) $(UNPACKED_ATTR) $(UNPACKED_CCTB) \
$(UNPACKED_LOADER) $(UNPACKED_MODUTILS) $(UNPACKED_COMPAT) \
- $(UNPACKED_CORE)
+ $(UNPACKED_BASE)
COMPILED = $(DOC)
GENERATED = $(COMPILED) $(UNPACKED)
SOURCE = $(DTX) $(DTXSTY) README TODO Changes Makefile
@@ -66,7 +66,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-loader check-modutils check-mcb \
- check-compat
+ check-compat check-base
doc: $(COMPILED)
unpack: $(UNPACKED)
ctan: check $(CTAN_ZIP)
@@ -103,7 +103,7 @@ $(UNPACKED_MODUTILS): luatexbase-modutils.dtx
$(UNPACKED_COMPAT): luatexbase-compat.dtx
$(DO_TEX)
-$(UNPACKED_CORE): luatexbase.dtx
+$(UNPACKED_BASE): luatexbase.dtx
$(DO_TEX)
check-regs: $(UNPACKED_REGS)
@@ -135,6 +135,10 @@ check-compat: $(UNPACKED_COMPAT)
luatex --interaction=batchmode test-compat-plain.tex >/dev/null
lualatex --interaction=batchmode test-compat-latex.tex >/dev/null
+check-base: $(UNPACKED_BASE)
+ luatex --interaction=batchmode test-base-plain.tex >/dev/null
+ lualatex --interaction=batchmode test-base-latex.tex >/dev/null
+
$(CTAN_ZIP): $(SOURCE) $(COMPILED) $(TDS_ZIP)
@echo "Making $@ for CTAN upload."
@$(RM) -- $@