#!/bin/bash
bison -d projet_bison.y
flex projet_flex.l
gcc -c lex.yy.c
gcc -c projet_bison.tab.c
gcc -o projet lex.yy.o projet_bison.tab.o

