
CFLAGS = -g  -O2 -Wall

my-shell : shell.c
	cc ${CFLAGS} -o my-shell shell.c -ly

shell.c : shell.y

clean:
	rm -rf my-shell* *.o shell.c
