]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.bin/systat/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / usr.bin / systat / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 PROG=   systat
7 SRCS=   cmds.c cmdtab.c devs.c fetch.c iostat.c keyboard.c main.c \
8         netcmds.c netstat.c pigs.c swap.c icmp.c \
9         mode.c ip.c tcp.c \
10         vmstat.c convtbl.c ifcmds.c ifstat.c
11
12 .if ${MK_INET6_SUPPORT} != "no"
13 SRCS+=  icmp6.c ip6.c
14 CFLAGS+= -DINET6
15 .endif
16
17 WARNS?= 0
18
19 DPADD=  ${LIBNCURSESW} ${LIBM} ${LIBDEVSTAT} ${LIBKVM}
20 LDADD=  -lncursesw -lm -ldevstat -lkvm
21
22 .include <bsd.prog.mk>