aelparse : aelflex.o aelbison.o
	gcc -o aelparse aelflex.o aelbison.o

aelflex.o : lex.yy.c ael_structs.h
	gcc -c -g -o aelflex.o lex.yy.c

aelbison.o : ael.tab.c ael.tab.h ael_structs.h
	gcc -c -g -o aelbison.o ael.tab.c # -DYYDEBUG

lex.yy.c : ael.flex
	flex ael.flex

ael.tab.c ael.tab.h : ael.y
	bison -v -d ael.y

test : aelparse
	./aelparse
