all:
	gcc -Wall -g3 -o mutex mutex.c -lpthread
clean:
	rm -f mutex
