]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/top/Makefile
Adding myself to committers-src.dot and calendar.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 sigdesc.h
6 CFLAGS+= -I ${.OBJDIR}
7 MAN=    top.1
8
9 WARNS?= 3
10
11 LIBADD= ncursesw m kvm jail
12
13 CLEANFILES= sigdesc.h
14 SIGNAL_H= ${SRCTOP}/sys/sys/signal.h
15 sigdesc.h: sigconv.awk ${SIGNAL_H}
16         awk -f ${SRCTOP}/usr.bin/top/sigconv.awk < ${SIGNAL_H} > ${.TARGET}
17
18 .include <bsd.prog.mk>