Leaked source code of windows server 2003
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.

18 lines
539 B

  1. REM This file should only be used in conjunction with types\makefile.inc
  2. if not exist %BTOOLSBIN%\tldiff.exe goto ExeNotFound
  3. %BTOOLSBIN%\tldiff.exe -s -f tldiff.ini %CURFILE% %REFFILE% > %OBJ_DIR%\errors.out
  4. if %ERRORLEVEL% NEQ 0 goto Error
  5. goto Exit
  6. :ExeNotFound
  7. echo tldiff.bat(1) : error E9999: %BTOOLSBIN%\tldiff.exe not found
  8. :Error
  9. echo tldiff.bat(1) : warning W9999: Renaming %OBJ_DIR%\%TLBNAME% to %OBJ_DIR%\%BADTLBNAME%
  10. del %OBJ_DIR%\%BADTLBNAME%
  11. ren %OBJ_DIR%\%TLBNAME% %BADTLBNAME%
  12. :Exit