]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - tools/regression/acct/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / tools / regression / acct / Makefile
1 #
2 # $FreeBSD$
3 #
4 # "make" will compile the acct test programs
5 #
6
7 PROG=   pack
8 SRCS=   pack.c
9 NO_MAN=
10 CFLAGS+= -I${.OBJDIR}
11
12 pack.o: convert.c
13
14 CLEANFILES+= convert.c
15 convert.c: ../../../sys/kern/kern_acct.c
16         sed -n -e 's/log(/syslog(/g' \
17                -e '/FLOAT_CONVERSION_START/,/FLOAT_CONVERSION_END/p' $? >$@
18
19 regress: pack regress.t
20         ${.CURDIR}/regress.t
21
22 .include <bsd.prog.mk>