all: pthreads total total_locking exit_pthreads total_locking_better total: total.cc g++ -g -Wall -std=c++11 -pthread -o total total.cc total_locking: total_locking.cc g++ -g -Wall -std=c++11 -pthread -o total_locking total_locking.cc total_locking_better: total_locking_better.cc g++ -g -Wall -std=c++11 -pthread -o total_locking_better total_locking_better.cc pthreads: pthreads.c gcc -g -Wall -std=c11 -pthread -o pthreads pthreads.c exit_pthreads: exit_pthreads.c gcc -g -Wall -std=c11 -pthread -o exit_pthreads exit_pthreads.c clean: rm pthreads total total_locking exit_pthreads total_locking_better