NetBSD/bin/ps/Makefile

20 lines
350 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.20 1998/02/18 03:54:58 perry Exp $
1995-03-21 12:01:59 +03:00
# @(#)Makefile 8.1 (Berkeley) 6/2/93
1993-03-21 12:45:37 +03:00
PROG= ps
1995-05-21 17:38:25 +04:00
SRCS= fmt.c keyword.c nlist.c print.c ps.c
1995-10-26 03:48:59 +03:00
DPADD= ${LIBM} ${LIBKVM}
1994-01-28 03:23:41 +03:00
LDADD= -lm -lkvm
1993-03-21 12:45:37 +03:00
BINGRP= kmem
BINMODE=2555
.include <bsd.prog.mk>
1998-02-09 09:25:15 +03:00
# XXX
.if defined(UVM)
CPPFLAGS+= -DUVM
.endif
.if defined(PMAP_NEW)
CPPFLAGS+= -DPMAP_NEW
.endif