17 lines
170 B
Makefile
17 lines
170 B
Makefile
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
SRCS= timings.c
|
||
|
PROG= timings
|
||
|
|
||
|
CFLAGS+=-Wall -I../../../include
|
||
|
|
||
|
CLEANFILES= ${PROG}.core
|
||
|
|
||
|
NO_MAN= yes
|
||
|
|
||
|
.include <bsd.prog.mk>
|
||
|
|
||
|
test: ${PROG}
|
||
|
@./timings
|