cs252/lab4-src/Makefile

22 lines
375 B
Makefile
Raw Normal View History

2018-10-15 17:30:23 -04:00
all: thr1 thr2 count count_spin deadlock
thr1: thr1.cc
g++ -o thr1 thr1.cc -lpthread
thr2: thr2.cc
g++ -o thr2 thr2.cc -lpthread
count: count.cc
g++ -o count count.cc -lpthread
count_spin: count_spin.cc
g++ -o count_spin count_spin.cc -lpthread
deadlock: deadlock.cc
g++ -o deadlock deadlock.cc -lpthread
clean:
rm -f *.o thr1 thr2 count count_spin deadlock