diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2009-07-15 07:06:45 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2009-07-15 07:06:45 +0000 |
commit | 27ebda48c23d3d5f81a2b9913b16dc24fe47b6d4 (patch) | |
tree | c2c182f1d2ffe202485b3957da242debf1a483b9 /windows | |
parent | fc77908692c0d6b271d3c5e6145bbb20d1f6a0f6 (diff) | |
download | pandoc-27ebda48c23d3d5f81a2b9913b16dc24fe47b6d4.tar.gz |
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')
-rw-r--r-- | windows/makefile | 10 |
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
+
|