15 lines
380 B
Batchfile
15 lines
380 B
Batchfile
|
rem @echo off
|
||
|
echo Compiling %1 into %2
|
||
|
|
||
|
copy ..\include\lffiles.h+%1 c:\temp\tmp.frm
|
||
|
set oldinc=%include
|
||
|
set include=..\include;..\ba;..\ce;..\cg;..\cm;..\db;..\m770;..\mg;..\mr;..\or;..\pr;..\sv;..\ve
|
||
|
cl.exe /nologo /EP c:\temp\tmp.frm > 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.frm
|
||
|
|
||
|
|