home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume6 / yaccref / Makefile next >
Encoding:
Makefile  |  1986-11-30  |  157 b   |  10 lines

  1.  
  2. CFLAGS=
  3. yyref:    yyref-lex yyref-grammar
  4.     lex yyref-lex
  5.     yacc -vd yyref-grammar
  6.     cc $(CFLAGS) y.tab.c -o yyref
  7.  
  8. clean:
  9.     rm -f lex.yy.c y.tab.? y.output yyref
  10.