home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_07 / 8n07060c < prev    next >
Text File  |  1990-06-19  |  367b  |  14 lines

  1.  
  2.         .l.c:
  3.                 lex $(LFLAGS) $*.l
  4.                 cat lex.hdr > $*.lex.c
  5.                 grep -v "^#.*line" lex.yy.c |\
  6.                   sed -e 's/yylex/$*_lex/'\
  7.                       -e 's/yytext/$*_text/'\
  8.                       -e 's/yywrap/$*_wrap/'\
  9.                       >> $*.lex.c
  10.                 rm lex.yy.c
  11.  
  12.         Listing 6
  13.  
  14.