diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-01-21 21:09:14 +0100 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-01-21 21:15:02 +0100 |
commit | 67a1fcd4d9f891452a0f53c5d6a7441be80d2a8f (patch) | |
tree | 872fb33b5d1a32033d34c0e571a615ea91ddbfdf /Makefile | |
parent | fce6d72bc19f78deadfe4551a3188abfd6ecd6eb (diff) | |
download | luatexbase-67a1fcd4d9f891452a0f53c5d6a7441be80d2a8f.tar.gz |
Documentation (and Makefile) tune-up.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -3,6 +3,7 @@ NAME = luatexbase DTX = $(wildcard *.dtx) DOC = $(patsubst %.dtx, %.pdf, $(DTX)) +DTXSTY = lltxb-dtxstyle.tex # Files grouped by generation mode UNPACKED_MCB = luamcallbacks-test.tex luamcallbacks.lua @@ -11,11 +12,11 @@ UNPACKED_REGS = luatexbase-regs.sty \ UNPACKED = $(UNPACKED_MCB) $(UNPACKED_REGS) COMPILED = $(DOC) GENERATED = $(COMPILED) $(UNPACKED) -SOURCE = $(DTX) README Makefile +SOURCE = $(DTX) $(DTXSTY) README TODO Makefile # Files grouped by installation location RUNFILES = $(UNPACKED) -DOCFILES = $(DOC) README +DOCFILES = $(DOC) README TODO SRCFILES = $(DTX) Makefile # The following definitions should be equivalent @@ -46,7 +47,7 @@ ctan: $(CTAN_ZIP) tds: check $(TDS_ZIP) world: all ctan -%.pdf: %.dtx +%.pdf: %.dtx $(DTXSTY) $(DO_PDFLATEX) $(DO_MAKEINDEX) $(DO_PDFLATEX) @@ -95,7 +96,7 @@ manifest: @for f in $(GENERATED); do echo $$f; done clean: - @$(RM) -- *.log *.aux *.toc *.idx *.ind *.ilg + @$(RM) -- *.log *.aux *.toc *.idx *.ind *.ilg *.out mrproper: clean @$(RM) -- $(GENERATED) $(ZIPS) |