blob: 82aed5079a3359186a57f7c53657b903df69eb04 (
plain)
1
2
3
4
5
6
7
8
9
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
  
  |