]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - tools/regression/acct/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.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 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>