Source code of Windows XP (NT5)
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.

25 lines
565 B

  1. @echo off
  2. echo. Creating Dxmedia.zip
  3. echo.
  4. echo.
  5. path=%path%;%WINZIP_DIR%
  6. if '%1'=='retail' goto RETAIL
  7. if '%1'=='debug' goto DEBUG
  8. if '%1'=='' goto END
  9. :DEBUG
  10. cd %AP_ROOT%\build\win\debug\bin
  11. del dxmedia.zip
  12. winzip32 -a -r -p -e0 dxmedia.zip *.class
  13. echo Debug dxmedia.zip done
  14. echo Debug dxmedia.zip done >> %Log_Dir%\%BUILDNO%Result.txt
  15. if not '%1'=='all' goto END
  16. :RETAIL
  17. cd %AP_ROOT%\build\win\ship\bin
  18. del dxmedia.zip
  19. winzip32 -a -r -p -e0 dxmedia.zip *.class
  20. echo Retail dxmedia.zip done
  21. echo Retail dxmedia.zip done >> %Log_Dir%\%BUILDNO%Result.txt
  22. :END