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.

23 lines
616 B

  1. @REM -----------------------------------------------------------------
  2. @REM
  3. @REM <<template_script.cmd>> - <<script owner alias>>
  4. @REM <<short description of this script>>
  5. @REM
  6. @REM Copyright (c) Microsoft Corporation. All rights reserved.
  7. @REM
  8. @REM -----------------------------------------------------------------
  9. @perl -x "%~f0" %*
  10. @goto :EOF
  11. #!perl
  12. use strict;
  13. use lib $ENV{RAZZLETOOLPATH} . "\\PostBuildScripts";
  14. use lib $ENV{RAZZLETOOLPATH};
  15. use PbuildEnv;
  16. use ParseArgs;
  17. sub Usage { print<<USAGE; exit(1) }
  18. <<Insert your usage message here>>
  19. USAGE
  20. parseargs('?' => \&Usage);