f9d0fb7ea3
Files correlati : Ricompilazione Demo : [ ] Commento :aggiunti progetti 32 bit git-svn-id: svn://10.65.10.50/trunk@10770 c028cbd2-c16b-5b4b-a496-9718f37d4682
17 lines
481 B
Batchfile
Executable File
17 lines
481 B
Batchfile
Executable File
rem @echo off
|
|
echo Compiling %1 into %2
|
|
|
|
copy ..\include\uml.h+%1 c:\temp\tmp.uml
|
|
set oldinc=%include
|
|
set include=..\include;..\xvaga;..\ve
|
|
cl.exe /nologo /EP c:\temp\tmp.uml > c:\temp\pippo.txt
|
|
c:\cvs\patchdef.exe <c:\temp\pippo.txt >c:\temp\tmp.msk
|
|
copy ..\include\uml.h+c:\temp\tmp.msk c:\temp\tmp.uml
|
|
cl.exe /nologo /EP c:\temp\tmp.uml > c:\temp\pippo.txt
|
|
set include=%oldinc
|
|
set oldinc=
|
|
c:\cvs\fastrip.exe c:\temp\pippo.txt %2
|
|
del /q c:\temp\tmp.uml
|
|
del /q c:\temp\pippo.txt
|
|
|