summaryrefslogtreecommitdiff
path: root/plugins/ShlExt
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-10-09 12:47:57 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-10-09 12:47:57 +0000
commitea7ee1f6052051f7e3ce54a08dd48f23291712cb (patch)
tree186e39ec2d3c2d960fcb3fcb6ef78e43a28ef976 /plugins/ShlExt
parent9469aa064cb3020d2e44dbfaf3676482c9549f7e (diff)
Pascal 32-bit final compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@1842 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ShlExt')
-rw-r--r--plugins/ShlExt/make.bat14
1 files changed, 6 insertions, 8 deletions
diff --git a/plugins/ShlExt/make.bat b/plugins/ShlExt/make.bat
index 78c8ca27d8..aa5fd44feb 100644
--- a/plugins/ShlExt/make.bat
+++ b/plugins/ShlExt/make.bat
@@ -6,13 +6,11 @@ REM -v0 turn off warnings
REM -O2 -Os // optimise
REM -Rintel (intel style asm)
REM -WB (relocatable) -WR (relocate)
-set OUTDIR="..\..\bin10\Release\Plugins"
+set OUTDIR="..\..\bin10\Release\Plugins"
if not exist %OUTDIR% mkdir %OUTDIR%
-md out
-fpc shlext.dpr -FEout -Fi..\..\include;..\..\include\delphi -Fi..\ExternalAPI\delphi -Fu..\..\include;..\..\include\delphi -Mdelphi -WG -O2 -Os -Rintel -WR -WB49ac0000 -v0
+md tmp
+fpc shlext.dpr -FE.\tmp -Fi..\..\include;..\..\include\delphi -Fi..\ExternalAPI\delphi -Fu..\..\include;..\..\include\delphi -Mdelphi -WG -O2 -Os -Rintel -WR -WB49ac0000 -v0
-move out\shlext.dll .
-del /Q out\*
-rd /Q out
-
-move /y shlext.dll ..\..\bin10\Release\Plugins\ShlExt.dll \ No newline at end of file
+move /y tmp\shlext.dll %OUTDIR%\ShlExt.dll
+del /Q tmp\*
+rd tmp \ No newline at end of file