1# Copyright (c) 2002, Intel Corporation. All rights reserved.
2# Created by:  julie.n.fleischer REMOVE-THIS AT intel DOT 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#
7
8CFLAGS = -g -O2 -Wall -Werror
9
10INCLUDE = -I../../../include
11
12LDPATH =
13
14LIB = -lrt
15
16all:	twoevtimers.test twoptimers.test
17
18%.test : %.c
19	$(CC) $(CFLAGS) $(INCLUDE) $< -o $@ $(LDPATH) $(LIB)
20
21clean :
22	rm *.test
23