diff options
| author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-03-27 22:29:26 +0100 | 
|---|---|---|
| committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-03-27 22:29:26 +0100 | 
| commit | 05400b0148d93a4d618680cf7283a1133712b649 (patch) | |
| tree | cdb93248c3f653a34d87ef0a2c56beaadf3cc6f3 /Makefile | |
| parent | 35474b9cf148bba81870c1361bfac31cf8c7c7bf (diff) | |
| download | luatexbase-05400b0148d93a4d618680cf7283a1133712b649.tar.gz | |
Initial test file for modutils.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 13 | 
1 files changed, 11 insertions, 2 deletions
@@ -15,8 +15,10 @@ UNPACKED_CCTB = luatexbase-cctb.sty luatexbase.cctb.lua \  				test-cctb-plain.tex test-cctb-latex.tex  UNPACKED_LOADER = luatexbase-loader.sty luatexbase.loader.lua \  				test-loader-plain.tex test-loader-latex.tex +UNPACKED_MODUTILS = luatexbase-modutils.sty luatexbase.modutils.lua \ +				test-modutils-plain.tex test-modutils-latex.tex  UNPACKED = $(UNPACKED_MCB) $(UNPACKED_REGS) $(UNPACKED_ATTR) $(UNPACKED_CCTB) \ -		   $(UNPACKED_LOADER) +		   $(UNPACKED_LOADER) $(UNPACKED_MODUTILS)  COMPILED = $(DOC)  GENERATED = $(COMPILED) $(UNPACKED)  SOURCE = $(DTX) $(DTXSTY) README TODO Changes Makefile @@ -47,7 +49,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-load +check: check-regs check-attr check-cctb check-load check-modutils  doc: $(COMPILED)  unpack: $(UNPACKED)  ctan: check $(CTAN_ZIP) @@ -75,6 +77,9 @@ $(UNPACKED_CCTB): luatexbase-cctb.dtx  $(UNPACKED_LOADER): luatexbase-loader.dtx  	$(DO_TEX) +$(UNPACKED_MODUTILS): luatexbase-modutils.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 @@ -91,6 +96,10 @@ check-loader: $(UNPACKED_LOADER)  	luatex --interaction=batchmode test-loader-plain.tex >/dev/null  	lualatex --interaction=batchmode test-loader-latex.tex >/dev/null +check-modutils: $(UNPACKED_MODUTILS) +	luatex --interaction=batchmode test-modutils-plain.tex >/dev/null +	lualatex --interaction=batchmode test-modutils-latex.tex >/dev/null +  $(CTAN_ZIP): $(SOURCE) $(COMPILED) $(TDS_ZIP)  	@echo "Making $@ for CTAN upload."  	@$(RM) -- $@  | 
