mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-27 11:20:58 +01:00
c6db8143ed
Reduce overlinking
24 lines
305 B
Makefile
24 lines
305 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= ifmcstat
|
|
SRCS= ifmcstat.c printb.c
|
|
|
|
MAN= ifmcstat.8
|
|
BINMODE= 555
|
|
|
|
WARNS?= 2
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+=-DINET6
|
|
.endif
|
|
|
|
.if ${MK_KVM_SUPPORT} != "no"
|
|
CFLAGS+=-DWITH_KVM
|
|
LIBADD= kvm
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|