summaryrefslogtreecommitdiff
path: root/usr.bin/top/Makefile
blob: c93c83e13cedec3530976d02f258e3bc7b1f2770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#	$OpenBSD: Makefile,v 1.10 2003/06/13 21:52:24 deraadt Exp $
#
# Makefile for OpenBSD top-3.4.

PROG=	top

CFLAGS+=-I.
SRCS=	commands.c display.c machine.c screen.c top.c username.c utils.c \
	version.c
DPADD=	${LIBCURSES} ${LIBM}
LDADD=	-lcurses -lm

CLEANFILES+=	sigdesc.h

.depend commands.o: sigdesc.h

sigdesc.h:	sigconv.awk
	awk -f ${.CURDIR}/sigconv.awk /usr/include/sys/signal.h > sigdesc.h

.include <bsd.prog.mk>