diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-12-19 22:00:41 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-12-19 22:00:41 +0000 |
commit | 31a956b65559ea669d5705e005ac3d6641d7518e (patch) | |
tree | 2341f56520e94e7b0b46a8b5c96d05a0243fa28d /src/templates/Makefile | |
parent | 206c59a3867ceecce4d1a9374411a889f263911f (diff) | |
download | pandoc-31a956b65559ea669d5705e005ac3d6641d7518e.tar.gz |
Changes to build process relating to r234.
+ Corrected dependencies in Makefiles to ensure that templates
get filled when the relevant files are modified.
+ Changed template placeholders to @xxx@ instead of <xxx>,
for consistency with our practice with the Cabal template.
+ Changed default font for RTF writer (this had been changed earlier,
but in the target rather than the template!)
git-svn-id: https://pandoc.googlecode.com/svn/trunk@235 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src/templates/Makefile')
-rw-r--r-- | src/templates/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/templates/Makefile b/src/templates/Makefile index ccd7b7076..c3256b87e 100644 --- a/src/templates/Makefile +++ b/src/templates/Makefile @@ -6,11 +6,11 @@ TARGETS := Text/Pandoc/ASCIIMathML.hs \ all: $(TARGETS) -Text/Pandoc/ASCIIMathML.hs: ASCIIMathML.hs $(PROCESSOR) $(VPATH)/ASCIIMathML.js +Text/Pandoc/ASCIIMathML.hs: ASCIIMathML.hs $(PROCESSOR) $(VPATH)/ASCIIMathML.js perl $(PROCESSOR) $@ $(VPATH) -Text/Pandoc/Writers/S5.hs: S5.hs $(PROCESSOR) $(VPATH)/headers/* +Text/Pandoc/Writers/S5.hs: S5.hs $(PROCESSOR) $(VPATH)/ui/default/* perl $(PROCESSOR) $@ $(VPATH) -Text/Pandoc/Writers/DefaultHeaders.hs: DefaultHeaders.hs $(PROCESSOR) $(VPATH)/ui/default/* +Text/Pandoc/Writers/DefaultHeaders.hs: DefaultHeaders.hs $(PROCESSOR) $(VPATH)/headers/* perl $(PROCESSOR) $@ $(VPATH) |