Mercurial > hgbook
comparison en/Makefile @ 103:5b80c922ebdd
More merge content.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Thu, 19 Oct 2006 15:18:07 -0700 |
parents | 272146fab009 |
children | 32bf9a5f22c0 |
comparison
equal
deleted
inserted
replaced
102:ff9dc8bc2a8b | 103:5b80c922ebdd |
---|---|
17 template.tex \ | 17 template.tex \ |
18 tour-basic.tex \ | 18 tour-basic.tex \ |
19 tour-merge.tex | 19 tour-merge.tex |
20 | 20 |
21 image-sources := \ | 21 image-sources := \ |
22 kdiff3.png \ | |
22 mq-stack.svg \ | 23 mq-stack.svg \ |
23 tour-history.svg \ | 24 tour-history.svg \ |
24 tour-merge-sep-repos.svg \ | 25 tour-merge-conflict.svg \ |
26 tour-merge-merge.svg \ | |
25 tour-merge-pull.svg \ | 27 tour-merge-pull.svg \ |
26 tour-merge-merge.svg | 28 tour-merge-sep-repos.svg |
29 | |
30 image-svg := $(filter %.svg,$(image-sources)) | |
27 | 31 |
28 example-sources := \ | 32 example-sources := \ |
29 daily.files \ | 33 daily.files \ |
30 hook.msglen \ | 34 hook.msglen \ |
31 hook.simple \ | 35 hook.simple \ |
36 mq.tarball \ | 40 mq.tarball \ |
37 mq.tools \ | 41 mq.tools \ |
38 mq.tutorial \ | 42 mq.tutorial \ |
39 template.simple \ | 43 template.simple \ |
40 template.svnstyle \ | 44 template.svnstyle \ |
41 tour | 45 tour \ |
46 tour-merge-conflict | |
42 | 47 |
43 latex-options = \ | 48 latex-options = \ |
44 -interaction batchmode \ | 49 -interaction batchmode \ |
45 -output-directory $(dir $(1)) \ | 50 -output-directory $(dir $(1)) \ |
46 -jobname $(basename $(notdir $(1))) | 51 -jobname $(basename $(notdir $(1))) |
132 | 137 |
133 build_id.tex: $(wildcard ../.hg/00changelog.[id]) | 138 build_id.tex: $(wildcard ../.hg/00changelog.[id]) |
134 echo -n $(hg_id) > build_id.tex | 139 echo -n $(hg_id) > build_id.tex |
135 | 140 |
136 clean: | 141 clean: |
137 rm -rf beta html pdf *.eps *.pdf *.png *.aux *.dvi *.log *.out \ | 142 rm -rf beta html pdf \ |
143 $(image-svg:%.svg=%.pdf) \ | |
144 $(image-svg:%.svg=%.png) \ | |
138 examples/*.{out,run} examples/.run build_id.tex | 145 examples/*.{out,run} examples/.run build_id.tex |