diff options
| -rw-r--r-- | Makefile | 7 | 
1 files changed, 6 insertions, 1 deletions
@@ -21,8 +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 = $(UNPACKED_MCB) $(UNPACKED_REGS) $(UNPACKED_ATTR) $(UNPACKED_CCTB) \ -		   $(UNPACKED_LOADER) $(UNPACKED_MODUTILS) $(UNPACKED_COMPAT) +		   $(UNPACKED_LOADER) $(UNPACKED_MODUTILS) $(UNPACKED_COMPAT) \ +		   $(UNPACKED_CORE)  COMPILED = $(DOC)  GENERATED = $(COMPILED) $(UNPACKED)  SOURCE = $(DTX) $(DTXSTY) README TODO Changes Makefile @@ -101,6 +103,9 @@ $(UNPACKED_MODUTILS): luatexbase-modutils.dtx  $(UNPACKED_COMPAT): luatexbase-compat.dtx  	$(DO_TEX) +$(UNPACKED_CORE): luatexbase.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  | 
