2007-11-03 23:27:58 +00:00
|
|
|
VPATH := ..
|
|
|
|
PROCESSOR := ./fillTemplates.pl
|
|
|
|
TARGETS := Text/Pandoc/ASCIIMathML.hs \
|
|
|
|
Text/Pandoc/Writers/S5.hs \
|
|
|
|
Text/Pandoc/Writers/DefaultHeaders.hs
|
|
|
|
|
|
|
|
all: $(TARGETS)
|
|
|
|
|
2007-11-29 02:03:04 +00:00
|
|
|
Text/Pandoc/ASCIIMathML.hs: ASCIIMathML.hs $(PROCESSOR) ASCIIMathML.js
|
2007-11-03 23:27:58 +00:00
|
|
|
perl $(PROCESSOR) $@ $(VPATH)
|
|
|
|
|
2007-11-29 02:03:04 +00:00
|
|
|
Text/Pandoc/Writers/S5.hs: S5.hs $(PROCESSOR) ui/default/*
|
2007-11-03 23:27:58 +00:00
|
|
|
perl $(PROCESSOR) $@ $(VPATH)
|
|
|
|
|
2007-11-29 02:03:04 +00:00
|
|
|
Text/Pandoc/Writers/DefaultHeaders.hs: DefaultHeaders.hs $(PROCESSOR) headers/*
|
2007-11-03 23:27:58 +00:00
|
|
|
perl $(PROCESSOR) $@ $(VPATH)
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
cd $(VPATH); rm -f $(TARGETS)
|