all : prog

test.o : test.c tab.h
	gcc -c -Wall -ansi -pedantic test.c

tab.o : tab.c tab.h
	gcc -c -Wall -ansi -pedantic tab.c

prog : tab.o test.o
	gcc tab.o test.o -o prog

