1# Copyright (c) 2004, Intel Corporation. All rights reserved.
2# Created by:  adam.li@intel.com
3# This file is licensed under the GPL license.  For the full content
4# of this license, see the COPYING file at the top level of this
5# source tree.
6
7CFLAGS := -Wall -I../../../include -O2
8LDFLAGS := -lpthread -lrt
9
10include /opt/libc/Makefile.inc
11
12TARGETS := pthread_cond_wait_1 pthread_cond_wait_2
13
14all: $(TARGETS)
15
16clean:
17	rm -f $(TARGETS)
18