blob: cc20240aa726584fd5343df5de98da819f099dbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $OpenBSD: Makefile,v 1.7 2001/02/17 23:01:40 deraadt Exp $
#
# Makefile for OpenBSD top-3.4.
PROG= top
CFLAGS+=-I. -I${.CURDIR} -DORDER
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>
.if (${UVM:L} == "yes")
CFLAGS+=-DUVM
.endif
|