CFLAGS=-ansi -pedantic -Wall -DDEBUG

OBJS=t.o

go: t
	./t

t: $(OBJS)
	$(CC) $(CFLAGS) -o t $(OBJS) -lpthread

clean:
	rm -f t *.o core