summaryrefslogtreecommitdiffstats
path: root/usr.bin/top/Makefile
blob: ce2db6e63f9f24b4f155a46aa82fa33a187dc9df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# $FreeBSD$
PROG=	top

TOPDIR=	${.CURDIR}/../../contrib/top
.PATH:	${TOPDIR}

CFLAGS+= -DHAVE_GETOPT -I${.CURDIR} -I${TOPDIR} -DORDER

#
# The table size should be a prime number approximately twice as
# large as the number of lines in /etc/passwd.  The default number
# is 20011, use /etc/make.conf to override this.
#
.if defined(TOP_TABLE_SIZE)
CFLAGS+= -D"Table_size=${TOP_TABLE_SIZE}"
.endif

SRCS=	commands.c display.c machine.c screen.c top.c \
	username.c utils.c version.c

CLEANFILES+= top.1
DPADD=  ${LIBTERMCAP} ${LIBM} ${LIBKVM}
LDADD=  -ltermcap -lm -lkvm

top.1:	${TOPDIR}/top.X top.local.1
	cat ${.ALLSRC} > top.1

.include <bsd.prog.mk>
OpenPOWER on IntegriCloud