diff options
| author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-05-23 10:52:53 +0200 | 
|---|---|---|
| committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-05-23 10:52:53 +0200 | 
| commit | 85ef1f8f4765b7f247f5fb5a7c0c42f589fe365a (patch) | |
| tree | c8b8ab2de4f8ce6fcc3a2a4f3d51958cecc1ee3f | |
| parent | 0bcab0e16d780313acd3a1b30d65dc8b71e56f07 (diff) | |
| download | luatexbase-85ef1f8f4765b7f247f5fb5a7c0c42f589fe365a.tar.gz | |
Add luatexbase.sty to Makefile.
| -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 | 
