mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
319 B
12 lines
319 B
echo %1...
|
|
copy %1 %2\bak >nul
|
|
set _apply=preport.h
|
|
if NOT "%3"=="" set _apply=%3
|
|
sed -e s/APPLY.H/%_apply%/g preport.sed >precust.sed
|
|
sed -e s/APPLY.H/%_apply%/g postport.sed >postcust.sed
|
|
sed -f precust.sed %1 >x.c
|
|
cl -EP -C -nologo x.c >temp.1
|
|
sed -f postcust.sed <temp.1 | sed -e 1d -e 2d -e 3d >%1
|
|
erase x.c
|
|
|
|
:end
|