all:
	gcc -Wall -g3 -o datarace datarace.c -lpthread
	#gcc -Wall -g3 -fsanitize=thread -o datarace datarace.c -pthread
clean:
	rm -f datarace
