mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-01 12:19:28 +00:00
ab90a4d1e2
They were already converted to use libulog, so it's easy to convert them to utmpx.
23 lines
466 B
Makefile
23 lines
466 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= systat
|
|
SRCS= cmds.c cmdtab.c devs.c fetch.c iostat.c keyboard.c main.c \
|
|
mbufs.c netcmds.c netstat.c pigs.c swap.c icmp.c \
|
|
mode.c ip.c tcp.c \
|
|
vmstat.c convtbl.c ifcmds.c ifstat.c
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
SRCS+= icmp6.c ip6.c
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
|
|
WARNS?= 0
|
|
|
|
DPADD= ${LIBCURSES} ${LIBM} ${LIBDEVSTAT} ${LIBKVM}
|
|
LDADD= -lcursesw -lm -ldevstat -lkvm
|
|
|
|
.include <bsd.prog.mk>
|