]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - tools/regression/acct/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / tools / regression / acct / Makefile
1 #
2 # $FreeBSD$
3 #
4 # "make" will compile what is needed and run the regression tests.
5 #
6 PROG=   pack
7 NO_MAN=
8
9 all: regress
10
11 pack: pack.c convert.c
12
13 convert.c: ../../../sys/kern/kern_acct.c
14         sed -n '/FLOAT_CONVERSION_START/,/FLOAT_CONVERSION_END/p' $? >$@
15
16 regress: pack regress.t
17         ./regress.t
18
19 clean:
20         rm -f $(PROG) convert.c
21
22 .include <bsd.prog.mk>