summaryrefslogtreecommitdiff
path: root/plugins/ShlExt/make.bat
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ShlExt/make.bat')
-rw-r--r--plugins/ShlExt/make.bat12
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/ShlExt/make.bat b/plugins/ShlExt/make.bat
new file mode 100644
index 0000000000..7faecea222
--- /dev/null
+++ b/plugins/ShlExt/make.bat
@@ -0,0 +1,12 @@
+@echo off
+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)
+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