]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.bin/systat/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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 DPADD=  ${LIBCURSES} ${LIBM} ${LIBDEVSTAT} ${LIBKVM}
18 LDADD=  -lcursesw -lm -ldevstat -lkvm
19
20 .include <bsd.prog.mk>