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.

20 lines
706 B

  1. BEGIN {
  2. FS="\t"
  3. }
  4. {
  5. if ($0 !~ /^;/)
  6. {
  7. printf "\nHome directory %s\n",$1
  8. printf "Executable base name %s\n",$2
  9. printf "Executable type (exe, dll, etc.) %s\n",$3
  10. printf "NMAKE target %s\n",$4
  11. printf "NMAKE flag(s) %s\n",$5
  12. printf "NMAKE clean flag(s) %s\n",$6
  13. printf "Object directory %s\n",$7
  14. printf "Component owner(s) %s\n",$8
  15. printf "Ssync directories %s\n",$9
  16. printf "Make depends.mak flag %s\n",$10
  17. printf "Component description %s\n",$11
  18. }
  19. }