blob: a847bfd690a4f97406bbc609d4cee2a62cfb3fe5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 'mingw32-make prep' prepares for building the Inno Setup installer
# note: before running this, build pandoc using:
# cabal install -f-library -fwrappers
# If the library is built, the data file paths will not be relocatable!
.PHONY: prep
prep:
strip ..\dist\build\pandoc\pandoc.exe
strip ..\dist\build\hsmarkdown\hsmarkdown.exe
strip ..\dist\build\markdown2pdf\markdown2pdf.exe
pandoc -s -S ..\README -o ..\README.html
copy ..\COPYING ..\COPYING.txt
copy ..\COPYRIGHT ..\COPYRIGHT.txt
|