16 lines
300 B
Batchfile
16 lines
300 B
Batchfile
|
rem @echo off
|
||
|
echo Compiling Form %1 into %2
|
||
|
|
||
|
copy ..\src\include\lffiles.h+%1 %TMP%\frm.tmp
|
||
|
set oldinc=%include
|
||
|
set include=..\src\include;%~p1
|
||
|
cl /nologo /EP %TMP%\frm.tmp >%TMP%\tmp.frm
|
||
|
set include=%oldinc
|
||
|
set oldinc=
|
||
|
|
||
|
fastrip %TMP%\tmp.frm %2
|
||
|
del %TMP%\tmp.frm
|
||
|
del %TMP%\frm.tmp
|
||
|
|
||
|
|