diff options
| author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-03-28 21:17:00 +0200 | 
|---|---|---|
| committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-03-28 21:17:00 +0200 | 
| commit | 0619da2c8fba197029485a87703aced7b01fe1ae (patch) | |
| tree | cafad4b753a530c688b31811aa474effc36073c6 /Makefile | |
| parent | 4f7874b84155e92331b205415dbd3b64dd9b77fc (diff) | |
| download | luatexbase-0619da2c8fba197029485a87703aced7b01fe1ae.tar.gz | |
Fix require statements and Makefile again.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 17 | 
1 files changed, 9 insertions, 8 deletions
@@ -5,7 +5,8 @@ DTX = $(wildcard *.dtx)  DOC = $(patsubst %.dtx, %.pdf, $(DTX))  DTXSTY = lltxb-dtxstyle.tex  LOADER_RUN = luatexbase-loader.sty luatexbase.loader.lua -MOD_RUN = luatexbase-modutils.sty luatexbase.modutils.lua +MOD_RUN = luatexbase-modutils.sty modutils.lua +LINKS = luatexbase.attr.lua luatexbase.cctb.lua luatexbase.modutils.lua  # Files grouped by generation mode  UNPACKED_MCB = luamcallbacks.lua \ @@ -18,8 +19,8 @@ UNPACKED_CCTB = luatexbase-cctb.sty cctb.lua \  				test-cctb-plain.tex test-cctb-latex.tex  UNPACKED_LOADER = $(LOADER_RUN) \  				test-loader-plain.tex test-loader-latex.tex -UNPACKED_MODUTILS = $(MOD_RUN) \ -				test-modutils-plain.tex test-modutils-latex.tex test-modutils.lua +UNPACKED_MODUTILS = $(MOD_RUN) test-modutils.lua \ +				test-modutils-plain.tex test-modutils-latex.tex  UNPACKED = $(UNPACKED_MCB) $(UNPACKED_REGS) $(UNPACKED_ATTR) $(UNPACKED_CCTB) \  		   $(UNPACKED_LOADER) $(UNPACKED_MODUTILS)  COMPILED = $(DOC) @@ -90,11 +91,11 @@ check-regs: $(UNPACKED_REGS)  	luatex --interaction=batchmode test-regs-plain.tex >/dev/null  	lualatex --interaction=batchmode test-regs-latex.tex >/dev/null -check-attr: $(UNPACKED_ATTR) $(LOADER_RUN) +check-attr: $(UNPACKED_ATTR) $(LOADER_RUN) $(LINKS)  	luatex --interaction=batchmode test-attr-plain.tex >/dev/null  	lualatex --interaction=batchmode test-attr-latex.tex >/dev/null -check-cctb: $(UNPACKED_CCTB) $(LOADER_RUN) +check-cctb: $(UNPACKED_CCTB) $(LOADER_RUN) $(LINKS)  	luatex --interaction=batchmode test-cctb-plain.tex >/dev/null  	lualatex --interaction=batchmode test-cctb-latex.tex >/dev/null @@ -102,11 +103,11 @@ 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) $(LOADER_RUN) +check-modutils: $(UNPACKED_MODUTILS) $(LOADER_RUN) $(LINKS)  	luatex --interaction=batchmode test-modutils-plain.tex >/dev/null  	lualatex --interaction=batchmode test-modutils-latex.tex >/dev/null -check-mcb: $(UNPACKED_MCB) $(LOADER_RUN) $(MOD_RUN) +check-mcb: $(UNPACKED_MCB) $(LOADER_RUN) $(MOD_RUN) $(LINKS)  	luatex --interaction=batchmode test-callbacks-plain.tex >/dev/null  	lualatex --interaction=batchmode test-callbacks-latex.tex >/dev/null @@ -146,5 +147,5 @@ clean:  	@$(RM) -- *.log *.aux *.toc *.idx *.ind *.ilg *.out test-*.pdf  mrproper: clean -	@$(RM) -- $(GENERATED) $(ZIPS) +	@$(RM) -- $(GENERATED) $(ZIPS) $(LINKS)  | 
