diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2010-03-19 16:18:46 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2010-03-19 16:18:46 +0000 |
commit | cfd47dbc3ed931c61a85e4e9a8f5abfa5b73091d (patch) | |
tree | 745bad17955400421a277f1da414f285aec66663 /web/Makefile | |
parent | e8f56d4c79febf56c8cbe3ca07873e1b8d9d264f (diff) | |
download | pandoc-cfd47dbc3ed931c61a85e4e9a8f5abfa5b73091d.tar.gz |
More fixes to web Makefile.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1920 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'web/Makefile')
-rw-r--r-- | web/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/web/Makefile b/web/Makefile index 8cf468575..70f088df1 100644 --- a/web/Makefile +++ b/web/Makefile @@ -1,4 +1,4 @@ -ALL := index.html README.html INSTALL.html examples.html pandoc.1.html markdown2pdf.1.html html2x.html +ALL := index.html README.html INSTALL.html examples.html pandoc.1.html markdown2pdf.1.html html2x.html changelog.txt PANDOC_PATH ?= $(dir $(shell which pandoc)) PANDOC_SRC ?= ${HOME}/src/pandoc MAKEPAGE = $(PANDOC_PATH)/pandoc -s -S -H css -A footer.html @@ -10,6 +10,9 @@ clean: for file in $(ALL); do rm $$file; done; \ rm -r example*; +changelog.txt : changelog + cp $< $@ + # 'make update' pulls in source files from the pandoc source directory sources := $(PANDOC_SRC)/dist/doc/html $(PANDOC_SRC)/changelog \ $(PANDOC_SRC)/INSTALL $(wildcard $(PANDOC_SRC)/man/man1/*.1) \ |