summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-10-08 15:52:19 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-10-08 15:52:19 +0000
commit9ce93f0f5570a1d7910577c9dbbe195f40ec4ab4 (patch)
tree53a203666ef3e845e9dfdd81b0f3d92bed016e61
parent0ed5d01cf1655cb9523156ed8b412afe49a09e88 (diff)
fix for a makefile
git-svn-id: http://svn.miranda-ng.org/main/trunk@1818 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/!NotAdopted/ShlExt/make.bat7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/!NotAdopted/ShlExt/make.bat b/plugins/!NotAdopted/ShlExt/make.bat
index 40131550cf..7faecea222 100644
--- a/plugins/!NotAdopted/ShlExt/make.bat
+++ b/plugins/!NotAdopted/ShlExt/make.bat
@@ -1,9 +1,12 @@
@echo off
-REM -Fi/u are for include/unit dirs
+REM -Fi/u are for include/unit dirs
REM -Mdelphi is delphi mode
REM -WG - graphical app
REM -v0 turn off warnings
REM -O2 -Os // optimise
REM -Rintel (intel style asm)
REM -WB (relocatable) -WR (relocate)
-fpc shlext.dpr -Fiinc -Fuinc -Mdelphi -WG -O2 -Os -Rintel -WR -WB49ac0000 -v0 \ No newline at end of file
+md out
+fpc shlext.dpr -FEout -Fi..\..\include;..\..\include\delphi -Fu..\..\include;..\..\include\delphi -Mdelphi -WG -O2 -Os -Rintel -WR -WB49ac0000 -v0
+del /Q out\*
+rd /Q out \ No newline at end of file