xref: /dragonfly/usr.bin/top/Makefile (revision 984263bc)
1# $FreeBSD: src/usr.bin/top/Makefile,v 1.5.6.2 2002/08/11 17:09:54 dwmalone Exp $
2PROG=	top
3
4TOPDIR=	${.CURDIR}/../../contrib/top
5.PATH:	${TOPDIR}
6
7CFLAGS+= -DHAVE_GETOPT -DHAVE_STRERROR -I${.CURDIR} -I${TOPDIR} -I. -DORDER
8
9#
10# The table size should be a prime number approximately twice as
11# large as the number of lines in /etc/passwd.  The default number
12# is 20011, use /etc/make.conf to override this.
13#
14.if defined(TOP_TABLE_SIZE)
15CFLAGS+= -D"Table_size=${TOP_TABLE_SIZE}"
16.endif
17
18SRCS=	commands.c display.c machine.c screen.c top.c \
19	username.c utils.c version.c top.local.h
20
21CLEANFILES+= top.local.h top.x top.1
22DPADD=  ${LIBTERMCAP} ${LIBM} ${LIBKVM}
23LDADD=  -ltermcap -lm -lkvm
24BINGRP= kmem
25BINMODE=2555
26
27top.1:	top.x top.local.1
28	cat ${.ALLSRC} > top.1
29
30.SUFFIXES: .X .x .H .h
31
32.X.x .H.h:
33	@${ECHO} Making ${.TARGET} from ${.IMPSRC}
34	@sed -e's,%LoadMax%,5.0,g' \
35	-e's,%TableSize%,20011,g' \
36	-e's,%NominalTopn%,18,g' \
37	-e's,%topn%,-1,g' \
38	-e's,%delay%,2,g' \
39	-e's,%random%,1,g' \
40	${.IMPSRC} > ${.TARGET}
41
42.include <bsd.prog.mk>
43