blob: dc7b875acad1a32382621f56e5ffa897a9aec261 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.6 2000/01/01 22:38:18 deraadt Exp $
PROG= sysctl
MAN= sysctl.8
CPPFLAGS+= -DINET6
afterinstall:
(cd ${DESTDIR}/usr/sbin; ln -sf ../../sbin/sysctl .)
.include <bsd.prog.mk>
.if (${UVM} == "yes")
CFLAGS+=-DUVM
.endif
|