turns printfs back on
[freebsd-src/fkvm-freebsd.git] / tools / regression / acct / Makefile
blob6834fcbe283bf36f61258d11508453121e578e7f
2 # $FreeBSD$
4 # "make" will compile what is needed and run the regression tests.
6 PROG= pack
7 NO_MAN=
9 all: regress
11 pack: pack.c convert.c
13 convert.c: ../../../sys/kern/kern_acct.c
14 sed -n '/FLOAT_CONVERSION_START/,/FLOAT_CONVERSION_END/p' $? >$@
16 regress: pack regress.t
17 ./regress.t
19 clean:
20 rm -f $(PROG) convert.c
22 .include <bsd.prog.mk>