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
10TARGETS := stress
11
12all: $(TARGETS)
13
14clean:
15	rm -f $(TARGETS)
16