a420c8119a
swapctl functionality. The idea is to create a swapctl command that is fairly close to the OpenBSD and NetBSD version. FreeBSD does not implement swap priority (and it would be a mistake if we did) so we didn't bother with that part of it. Submitted by: Eirik Nygaard <eirikn@bluezone.no> Augmented by: dillon (extensively) Reviewed by: David Schultz <dschultz@uclink.Berkeley.EDU>
12 lines
240 B
Makefile
12 lines
240 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
|
|
|
|
.include <bsd.prog.mk>
|