blob: 33d3787c0ee390a0cd2abec78761b2c174fdfca8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
all: main_thread_exit thread_normal_exit sem_wait_cancel \
cond_wait_cancel cond_wait_cancel2 catch_pthread_exit
.cpp:
c++ -o $@ $< -lpthread
main_thread_exit: main_thread_exit.cpp
thread_normal_exit: thread_normal_exit.cpp
sem_wait_cancel: sem_wait_cancel.cpp
cond_wait_cancel: cond_wait_cancel.cpp
cond_wait_cancel2: cond_wait_cancel2.cpp
catch_pthread_exit: catch_pthread_exit.cpp
clean: .PHONY
rm -rf main_thread_exit thread_normal_exit sem_wait_cancel \
cond_wait_cancel cond_wait_cancel2 catch_pthread_exit
|