home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mntlib32.zoo / purec / filter.awk < prev    next >
Text File  |  1993-05-23  |  226b  |  22 lines

  1. BEGIN {
  2.     output = 0
  3.     retcode = 1
  4.     printf "\t.INCLUDE \'osmacros.s\'\n\n\t.EXPORT %s\n\n", name
  5. }
  6.  
  7. /\.ENDMOD/ && output {
  8.     retcode = 0
  9.     exit
  10. }
  11.  
  12. output
  13.  
  14. !output && $2 == name ":" {
  15.     output = 1
  16.     print $2
  17. }
  18.  
  19. END {
  20.     exit retcode
  21. }
  22.