16 lines
386 B
Batchfile
16 lines
386 B
Batchfile
|
@echo off
|
||
|
echo Generating %1 ini file
|
||
|
|
||
|
copy ..\include\lffiles.h+%1 c:\temp\tmp.src
|
||
|
set oldinc=%include
|
||
|
set include=..\include;..\ve
|
||
|
cl.exe /nologo /EP c:\temp\tmp.src > c:\temp\pippo.txt
|
||
|
set include=%oldinc
|
||
|
set oldinc=
|
||
|
c:\cvs\fastrip.exe c:\temp\pippo.txt %2
|
||
|
del /q c:\temp\pippo.txt
|
||
|
del /q c:\temp\tmp.src
|
||
|
|
||
|
cd c:\u\luca\r020200\exe
|
||
|
echo Generating %2 msk file
|
||
|
ve0.exe -3 %2 -f /uADMIN
|