home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2 / Openstep-4.2-Intel-User.iso / usr / lib / transcript / troff.font / doto.awk < prev    next >
Text File  |  1997-03-29  |  494b  |  15 lines

  1. # transcript/lib/troff.font/doto.awk
  2. #
  3. # Copyright (C) 1985,1987 Adobe Systems Incorporated. All rights reserved.
  4. #
  5. # Gets used by the Makefile in this directory.
  6. #
  7. # This short "awk" program generates a list of font files by
  8. # searching its input (a ".map" file) for the @FACENAMES line.
  9. # This list is used as the argument string to a "make" so that
  10. # the troff width tables can be built automatically from the ".map"
  11. # file.
  12.  
  13. /^@FACENAMES /    {print "ft" $2, "ft" $3, "ft" $4, "ft" $5
  14.         exit}
  15.