xref: /openbsd-src/usr.bin/top/Makefile (revision 86e032d7eacf97005893b86d99baa205c6671b58)
1#	$OpenBSD: Makefile,v 1.17 2018/09/22 16:50:35 millert 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 utils.c
9DPADD=	${LIBCURSES}
10LDADD=	-lcurses
11
12.include <bsd.prog.mk>
13