blob: 88c4f7c7280bd89b57dd48d4ee68d01d1958aaf8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#
# $FreeBSD$
#
SRCS= timings.c
PROG= timings
CFLAGS+=-Wall -I../../../include
CLEANFILES= ${PROG}.core
NO_MAN= yes
.include <bsd.prog.mk>
test: ${PROG}
@./timings
|