default:
	make win

unix:
	./ebnf test.ebnf test.cpp -model
	./ebnf test.ebnf test.cpp -event
	flex lexer.l
	c++ test.cpp lex.yy.c -o expr.out
	

win:
	wine cmd /c build.bat

test:
	wine cmd /c test.exe 
