xref: /openbsd/usr.bin/top/Makefile (revision 891d7ab6)
1#	$OpenBSD: Makefile,v 1.15 2010/03/18 12:28:09 otto Exp $
2#
3# Makefile for OpenBSD top-3.4.
4
5PROG=	top
6
7CFLAGS+=-I. -Wall -Wmissing-prototypes
8SRCS=	commands.c display.c machine.c screen.c top.c username.c utils.c
9DPADD=	${LIBCURSES}
10LDADD=	-lcurses
11
12.include <bsd.prog.mk>
13
14