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
8#CFLAGS = -g -O2 -Wall -Werror
9CFLAGS = -g -O2 -Wall -Werror -DDEBUG
10
11INCLUDE = -I../../../include
12
13LDPATH =
14
15LIB = -lrt
16
17all:	twopsetclock.test invaliddates.test
18
19%.test : %.c
20	$(CC) $(CFLAGS) $(INCLUDE) $< -o $@ $(LDPATH) $(LIB)
21
22clean :
23	rm *.test
24