Makefile revision 259065
1#
2# $FreeBSD: releng/10.0/tools/regression/acct/Makefile 217064 2011-01-06 20:05:24Z keramida $
3#
4# "make" will compile the acct test programs
5#
6
7PROG=	pack
8SRCS=	pack.c
9NO_MAN=
10CFLAGS+= -I${.OBJDIR}
11
12pack.o:	convert.c
13
14CLEANFILES+= convert.c
15convert.c: ../../../sys/kern/kern_acct.c
16	sed -n -e 's/log(/syslog(/g' \
17	       -e '/FLOAT_CONVERSION_START/,/FLOAT_CONVERSION_END/p' $? >$@
18
19regress: pack regress.t
20	${.CURDIR}/regress.t
21
22.include <bsd.prog.mk>
23