summaryrefslogtreecommitdiff
path: root/plugins/ShlExt/make.bat
blob: a9cd86087c0141580ffb4c9ac8a7cdce1407684a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@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
move out\shlext.dll .
del /Q out\*
rd /Q out