freebsd-dev/usr.bin/systat/Makefile

22 lines
420 B
Makefile
Raw Normal View History

1994-05-27 12:33:43 +00:00
# @(#)Makefile 8.1 (Berkeley) 6/6/93
2000-09-16 03:30:50 +00:00
# $FreeBSD$
1994-05-27 12:33:43 +00:00
.include <src.opts.mk>
2006-07-27 14:20:14 +00:00
1994-05-27 12:33:43 +00:00
PROG= systat
SRCS= cmds.c cmdtab.c devs.c fetch.c iostat.c keyboard.c main.c \
netcmds.c netstat.c pigs.c swap.c icmp.c \
mode.c ip.c sctp.c tcp.c zarc.c \
vmstat.c convtbl.c ifcmds.c ifstat.c
2006-07-27 14:20:14 +00:00
.if ${MK_INET6_SUPPORT} != "no"
SRCS+= icmp6.c ip6.c
CFLAGS+= -DINET6
.endif
2015-06-06 13:08:48 +00:00
WARNS?= 1
LIBADD= ncursesw m devstat kvm util
1994-05-27 12:33:43 +00:00
.include <bsd.prog.mk>