summaryrefslogtreecommitdiff
path: root/windows/makefile
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-07-15 07:06:45 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-07-15 07:06:45 +0000
commit27ebda48c23d3d5f81a2b9913b16dc24fe47b6d4 (patch)
treec2c182f1d2ffe202485b3957da242debf1a483b9 /windows/makefile
parentfc77908692c0d6b271d3c5e6145bbb20d1f6a0f6 (diff)
Added makefile for Inno Setup prep work.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1597 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'windows/makefile')
-rw-r--r--windows/makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/windows/makefile b/windows/makefile
new file mode 100644
index 000000000..82aed5079
--- /dev/null
+++ b/windows/makefile
@@ -0,0 +1,10 @@
+# 'mingw32-make prep' prepares for building the Inno Setup
+# installer
+
+.PHONY: prep
+prep:
+ strip ..\dist\build\pandoc\pandoc.exe
+ pandoc -s -S ..\README -o ..\README.html
+ copy ..\COPYING ..\COPYING.txt
+ copy ..\COPYRIGHT ..\COPYRIGHT.txt
+