]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.bin/systat/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.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         mbufs.c 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>