mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-17 16:10:46 +01:00
bf9e2e599f
Make swapinfo use libc functions for obtaining device information. Note: swapinfo should actually be deprecated, not fixed. pstat -s performs the same function. Submitted by: jhay
13 lines
200 B
Makefile
13 lines
200 B
Makefile
# @(#)Makefile 5.5 (Berkeley) 4/23/91
|
|
|
|
PROG= swapinfo
|
|
SRCS= swapinfo.c
|
|
.PATH: ${.CURDIR}/../../bin/df
|
|
|
|
DPADD= ${LIBMATH} ${LIBUTIL}
|
|
LDADD= -lm -lkvm
|
|
BINGRP= kmem
|
|
BINMODE=2555
|
|
|
|
.include <bsd.prog.mk>
|