pandoc/web/Makefile
fiddlosopher 8d4a1ed039 More website changes. Include demo of docbook postprocessed
by xmlto.


git-svn-id: https://pandoc.googlecode.com/svn/trunk@486 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-01-09 20:42:13 +00:00

26 lines
670 B
Makefile

ALL := index.html osx-notes.html README.html INSTALL.html features.html changelog.html examples.html
PANDOC_PATH ?= $(dir $(shell which pandoc))
MAKEPAGE = $(PANDOC_PATH)/pandoc -s -S -B header.html -A footer.html -H css
PANDOC_DEPS = header.html footer.html css
all : $(ALL)
.PHONY: clean
clean:
for file in $(ALL); do rm $$file; done; \
rm -r example*;
examples.txt : $(PANDOC_DEPS) mkdemos.sh
./mkdemos.sh . $(PANDOC_PATH) > $@
%.html : %.txt $(PANDOC_DEPS)
$(MAKEPAGE) $< > $@
%.html : % $(PANDOC_DEPS)
$(MAKEPAGE) $< > $@
changelog.html : changelog.txt $(PANDOC_DEPS)
$(MAKEPAGE) -T "Pandoc changelog" $< > $@
upload :
sitecopy --update macfarlane