# Copyright (C) 1992, Digital Equipment Corporation
# All rights reserved.
# See the file COPYRIGHT for a full description.
#
# Last modified on Wed Aug 10 13:37:58 PDT 1994 by kalsow

YACC = bison -y

all: lex.yy.c  y.tab.c

lex.yy.c: ../Parse.lex ; lex ../Parse.lex

y.tab.c: ../Parse.yacc
	@echo "expect 2 shift/reduce conflicts"
	$(YACC) ../Parse.yacc

clean: ; rm -f lex.yy.c y.tab.c

