blob: 6834fcbe283bf36f61258d11508453121e578e7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# $FreeBSD$
#
# "make" will compile what is needed and run the regression tests.
#
PROG= pack
NO_MAN=
all: regress
pack: pack.c convert.c
convert.c: ../../../sys/kern/kern_acct.c
sed -n '/FLOAT_CONVERSION_START/,/FLOAT_CONVERSION_END/p' $? >$@
regress: pack regress.t
./regress.t
clean:
rm -f $(PROG) convert.c
.include <bsd.prog.mk>
|