opnsense-src/usr.bin/systat/Makefile

22 lines
429 B
Makefile
Raw Normal View History

1994-05-27 08:33:43 -04:00
# @(#)Makefile 8.1 (Berkeley) 6/6/93
2000-09-15 23:30:50 -04:00
# $FreeBSD$
1994-05-27 08:33:43 -04:00
.include <src.opts.mk>
2006-07-27 10:20:14 -04:00
1994-05-27 08:33:43 -04:00
PROG= systat
SRCS= cmds.c cmdtab.c devs.c fetch.c iostat.c keyboard.c main.c sysput.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 10:20:14 -04:00
.if ${MK_INET6_SUPPORT} != "no"
SRCS+= icmp6.c ip6.c
CFLAGS+= -DINET6
.endif
2015-06-06 09:08:48 -04:00
WARNS?= 1
LIBADD= ncursesw m devstat kvm util
1994-05-27 08:33:43 -04:00
.include <bsd.prog.mk>