home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume4 / troff2lj-v2 / part01 / ccfinfo next >
Text File  |  1989-02-03  |  341b  |  21 lines

  1. :
  2. # ccfinfo
  3. #
  4. # Input:  fiXX.c file, made by hand
  5. # Output: fiXX file, usable by troff2lj when put in /usr/lib/hpfontinfo
  6. #
  7. # Sample usage: ccfinfo fihR
  8. #
  9. # David MacKenzie
  10. # Latest revision: 07/24/88
  11.  
  12. hdrbytes=`dewidth -h`
  13.  
  14. for font
  15. do
  16.     cc -c $font.c
  17.     strip $font.o
  18.     dd skip=$hdrbytes ibs=1 if=$font.o of=$font
  19.     rm $font.o
  20. done
  21.