CFLAGS=-ansi -pedantic -Wall -DWORK

OBJS=t.o

go: t
	./t

t: $(OBJS)
	gcc -o t $(OBJS) -lpthread

clean:
	rm -f t *.o core