OBJS=t.o
CFLAGS=-DWORK

go: t
	./t | sort -n -k 5

t: $(OBJS)
	gcc -o t $(OBJS) -lpthread
	
clean:
	rm -f core t *.o