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
34 lines
1.1 KiB
BEGIN {
|
|
FS ="\t"
|
|
print "@ECHO OFF > chkbuild.out"
|
|
print "if exist chkbuild.out del chkbuild.out"
|
|
print "if exist chkbuild.tmp del chkbuild.tmp"
|
|
print "echotime /t >> chkbuild.out"
|
|
print "echo. >> chkbuild.out"
|
|
print "echo This is the file status report for the Internet Phone build as brought to you by >> chkbuild.out"
|
|
print "echo Hammer. This message will contain the names of any files that are missing >> chkbuild.out"
|
|
print "echo from the release point. Contact Hammer for further information. >> chkbuild.out"
|
|
print "echo. >> chkbuild.out"
|
|
}
|
|
|
|
{
|
|
if ( $2 != "" && $2 ~ /[.]/ && $4 != "N" )
|
|
{
|
|
printf "if not exist %%RRelDir%%\\%s echo %-13s does not exist in %%RRelDir%% >> chkbuild.out \n", $2, $2
|
|
}
|
|
if ( $2 != "" && $2 ~ /[.]/ && $4 != "N" )
|
|
{
|
|
printf "if not exist %%DRelDir%%\\%s echo %-13s does not exist in %%DRelDir%% >> chkbuild.out \n", $2, $2
|
|
}
|
|
if ( $2 != "" && $2 ~ /[.]/ && $4 != "N" )
|
|
{
|
|
printf "if not exist %%TRelDir%%\\%s echo %-13s does not exist in %%TRelDir%% >> chkbuild.out \n", $2, $2
|
|
}
|
|
}
|
|
|
|
|
|
END {
|
|
|
|
print "copy chkbuild.out chkbuild.tmp"
|
|
|
|
}
|