]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/top/Makefile
top(1): further unconditionally assume we're on FreeBSD
[FreeBSD/FreeBSD.git] / usr.bin / top / Makefile
1 # $FreeBSD$
2
3 PROG=   top
4 SRCS=   commands.c display.c machine.c screen.c top.c \
5         username.c utils.c
6 SRCS+=  sigdesc.h top.local.h
7 CFLAGS+= -I ${.OBJDIR}
8 MAN=    top.1
9
10 WARNS?= 3
11
12 LIBADD= ncursesw m kvm jail
13
14 CLEANFILES= sigdesc.h
15 SIGNAL_H= ${SRCTOP}/sys/sys/signal.h
16 sigdesc.h: sigconv.awk ${SIGNAL_H}
17         awk -f ${SRCTOP}/usr.bin/top/sigconv.awk < ${SIGNAL_H} > ${.TARGET}
18
19 .include <bsd.prog.mk>