summaryrefslogtreecommitdiffstats
path: root/usr.bin/top/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/top/Makefile')
-rw-r--r--usr.bin/top/Makefile33
1 files changed, 20 insertions, 13 deletions
diff --git a/usr.bin/top/Makefile b/usr.bin/top/Makefile
index 08343da..182714a 100644
--- a/usr.bin/top/Makefile
+++ b/usr.bin/top/Makefile
@@ -1,32 +1,35 @@
# $FreeBSD$
-PROG= top
TOPDIR= ${.CURDIR}/../../contrib/top
-.PATH: ${TOPDIR}
+.PATH: ${TOPDIR}
-CFLAGS+= -DHAVE_GETOPT -DHAVE_STRERROR -I${.CURDIR} -I${TOPDIR} -I. -DORDER
+PROG= top
+SRCS= commands.c display.c machine.c screen.c top.c \
+ username.c utils.c version.c
+SRCS+= sigdesc.h top.local.h
+CFLAGS+= -DHAVE_GETOPT -DHAVE_STRERROR -DORDER
+CFLAGS+= -I${.CURDIR} -I${TOPDIR} -I.
#
# 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.
+# 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 top.local.h
+DPADD= ${LIBTERMCAP} ${LIBM} ${LIBKVM}
+LDADD= -ltermcap -lm -lkvm
-CLEANFILES+= top.local.h top.x top.1
-DPADD= ${LIBTERMCAP} ${LIBM} ${LIBKVM}
-LDADD= -ltermcap -lm -lkvm
-
-top.1: top.x top.local.1
- cat ${.ALLSRC} > top.1
+CLEANFILES= sigdesc.h
+SIGCONV_AWK= ${.CURDIR}/../../contrib/top/sigconv.awk
+SIGNAL_H= ${DESTDIR}/usr/include/sys/signal.h
+sigdesc.h: ${SIGCONV_AWK} ${SIGNAL_H}
+ awk -f ${SIGCONV_AWK} < ${SIGNAL_H} > ${.TARGET}
+CLEANFILES+= top.local.h top.x
.SUFFIXES: .X .x .H .h
-
.X.x .H.h:
@${ECHO} Making ${.TARGET} from ${.IMPSRC}
@sed -e's,%LoadMax%,5.0,g' \
@@ -37,4 +40,8 @@ top.1: top.x top.local.1
-e's,%random%,1,g' \
${.IMPSRC} > ${.TARGET}
+CLEANFILES+= top.1
+top.1: top.x top.local.1
+ cat ${.ALLSRC} > ${.TARGET}
+
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud