Makefile revision 290905
1# $FreeBSD: head/tests/sys/kern/acct/Makefile 290904 2015-11-16 03:28:28Z ngie $
2
3TESTSDIR=	${TESTSBASE}/sys/kern/acct
4
5ATF_TESTS_C=	acct_test
6
7CFLAGS+=	-I${.OBJDIR}
8
9CLEANFILES+=	convert.c
10
11DPSRCS.acct_test=	convert.c
12
13convert.c: ${SRCTOP}/sys/kern/kern_acct.c
14	sed -n -e 's/log(/syslog(/g' \
15	       -e '/FLOAT_CONVERSION_START/,/FLOAT_CONVERSION_END/p' ${.ALLSRC} >>${.TARGET}
16
17.include <bsd.test.mk>
18