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.

34 lines
1.1 KiB

  1. BEGIN {
  2. FS ="\t"
  3. print "@ECHO OFF > chkbuild.out"
  4. print "if exist chkbuild.out del chkbuild.out"
  5. print "if exist chkbuild.tmp del chkbuild.tmp"
  6. print "echotime /t >> chkbuild.out"
  7. print "echo. >> chkbuild.out"
  8. print "echo This is the file status report for the Internet Phone build as brought to you by >> chkbuild.out"
  9. print "echo Hammer. This message will contain the names of any files that are missing >> chkbuild.out"
  10. print "echo from the release point. Contact Hammer for further information. >> chkbuild.out"
  11. print "echo. >> chkbuild.out"
  12. }
  13. {
  14. if ( $2 != "" && $2 ~ /[.]/ && $4 != "N" )
  15. {
  16. printf "if not exist %%RRelDir%%\\%s echo %-13s does not exist in %%RRelDir%% >> chkbuild.out \n", $2, $2
  17. }
  18. if ( $2 != "" && $2 ~ /[.]/ && $4 != "N" )
  19. {
  20. printf "if not exist %%DRelDir%%\\%s echo %-13s does not exist in %%DRelDir%% >> chkbuild.out \n", $2, $2
  21. }
  22. if ( $2 != "" && $2 ~ /[.]/ && $4 != "N" )
  23. {
  24. printf "if not exist %%TRelDir%%\\%s echo %-13s does not exist in %%TRelDir%% >> chkbuild.out \n", $2, $2
  25. }
  26. }
  27. END {
  28. print "copy chkbuild.out chkbuild.tmp"
  29. }