55dd20af65
Files correlati : Ricompilazione Demo : [ ] Commento : git-svn-id: svn://10.65.10.50/branches/R_10_00@21199 c028cbd2-c16b-5b4b-a496-9718f37d4682
17 lines
419 B
Batchfile
Executable File
17 lines
419 B
Batchfile
Executable File
rem @echo off
|
|
echo Compiling %1 into %2
|
|
|
|
copy ..\include\lffiles.h+%1 %TMP%\tmp.tmp
|
|
set oldinc=%include
|
|
set include=..\include;..\at;..\ba;..\ce;..\cg;..\cm;..\db;..\dl;..\m770;..\mg;..\mr;..\or;..\pr;..\ps;..\sc;..\sv;..\ve
|
|
cl /nologo /EP %TMP%\tmp.tmp >%TMP%\tmp.frm
|
|
set include=%oldinc
|
|
set oldinc=
|
|
fastrip %TMP%\tmp.frm %TMP%\tmp1.frm
|
|
copy %TMP%\tmp1.frm %2
|
|
del %TMP%\tmp.frm
|
|
del %TMP%\tmp1.frm
|
|
del %TMP%\tmp.tmp
|
|
|
|
|