]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - tools/regression/pthread/unwind/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / tools / regression / pthread / unwind / Makefile
1 # $FreeBSD$
2 all: main_thread_exit thread_normal_exit sem_wait_cancel \
3      cond_wait_cancel cond_wait_cancel2 catch_pthread_exit
4
5 .cpp:
6         c++ -o $@ $< -lpthread
7         
8 main_thread_exit: main_thread_exit.cpp
9 thread_normal_exit: thread_normal_exit.cpp
10 sem_wait_cancel: sem_wait_cancel.cpp
11 cond_wait_cancel: cond_wait_cancel.cpp
12 cond_wait_cancel2: cond_wait_cancel2.cpp
13 catch_pthread_exit: catch_pthread_exit.cpp
14
15 clean: .PHONY
16         rm -rf main_thread_exit thread_normal_exit sem_wait_cancel \
17         cond_wait_cancel cond_wait_cancel2 catch_pthread_exit