[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / top

File: [local] / src / usr.bin / top / Makefile (download)

Revision 1.13, Tue May 29 00:56:56 2007 UTC (17 years ago) by otto
Branch: MAIN
CVS Tags: OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.12: +2 -2 lines

Instead of using hand-crafted redraws minimizing screen updates, use curses.
Enables nice things like process highlighting without hurting the brain.
ok deraadt@

#	$OpenBSD: Makefile,v 1.13 2007/05/29 00:56:56 otto Exp $
#
# Makefile for OpenBSD top-3.4.

PROG=	top

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

.include <bsd.prog.mk>