2e64768c87
giving the output in a human-readable form. This behaviour is consistent with most of system tools. - Add -m and -g options to give output in megabytes and gigabytes respectively.
15 lines
273 B
Makefile
15 lines
273 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
PROG= swapon
|
|
MAN= swapon.8
|
|
LINKS= ${BINDIR}/swapon ${BINDIR}/swapoff
|
|
LINKS+= ${BINDIR}/swapon ${BINDIR}/swapctl
|
|
MLINKS= swapon.8 swapoff.8
|
|
MLINKS+=swapon.8 swapctl.8
|
|
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
|
|
.include <bsd.prog.mk>
|