diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-01-21 21:42:33 +0100 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-01-21 21:42:33 +0100 |
commit | 64be9a101c83d756d844496caf788e643658dad1 (patch) | |
tree | b81c0b04609bc7a59d50c6226c40a64187128e0b /Makefile | |
parent | 67a1fcd4d9f891452a0f53c5d6a7441be80d2a8f (diff) | |
download | luatexbase-64be9a101c83d756d844496caf788e643658dad1.tar.gz |
Handle test files correctly in Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -6,7 +6,7 @@ DOC = $(patsubst %.dtx, %.pdf, $(DTX)) DTXSTY = lltxb-dtxstyle.tex # Files grouped by generation mode -UNPACKED_MCB = luamcallbacks-test.tex luamcallbacks.lua +UNPACKED_MCB = test-luamcallbacks.tex luamcallbacks.lua UNPACKED_REGS = luatexbase-regs.sty \ test-regs-plain.tex test-regs-latex.tex UNPACKED = $(UNPACKED_MCB) $(UNPACKED_REGS) @@ -15,8 +15,8 @@ GENERATED = $(COMPILED) $(UNPACKED) SOURCE = $(DTX) $(DTXSTY) README TODO Makefile # Files grouped by installation location -RUNFILES = $(UNPACKED) -DOCFILES = $(DOC) README TODO +RUNFILES = $(filter-out test-%, $(UNPACKED)) +DOCFILES = $(DOC) $(filter test-%, $(UNPACKED)) README TODO SRCFILES = $(DTX) Makefile # The following definitions should be equivalent @@ -44,7 +44,7 @@ check: check-regs doc: $(COMPILED) unpack: $(UNPACKED) ctan: $(CTAN_ZIP) -tds: check $(TDS_ZIP) +tds: check $(TDS_ZIP) Makefile world: all ctan %.pdf: %.dtx $(DTXSTY) |