9b6d988185
I meant to replace "exp" with "exponent", not "expected" MFC after: 13 days Pointyhat to: ngie Submitted by: bde
21 lines
437 B
Makefile
21 lines
437 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/kern/acct
|
|
|
|
ATF_TESTS_C= acct_test
|
|
|
|
CFLAGS+= -I${.OBJDIR}
|
|
|
|
CLEANFILES+= convert.c convert.c.tmp
|
|
|
|
DPSRCS.acct_test= convert.c
|
|
acct_test.o: convert.c
|
|
|
|
convert.c: ${SRCTOP}/sys/kern/kern_acct.c
|
|
sed -n -e 's/log(/syslog(/g' \
|
|
-e 's/exp/exponent/g' \
|
|
-e '/FLOAT_CONVERSION_START/,/FLOAT_CONVERSION_END/p' ${.ALLSRC} >${.TARGET}.tmp
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
|
|
|
.include <bsd.test.mk>
|