Deleted Added
full compact
Makefile (116282) Makefile (126173)
1# $FreeBSD: head/bin/ps/Makefile 116282 2003-06-13 07:04:02Z markm $
1# $FreeBSD: head/bin/ps/Makefile 126173 2004-02-23 20:05:14Z johan $
2# @(#)Makefile 8.1 (Berkeley) 6/2/93
3
4PROG= ps
5SRCS= fmt.c keyword.c nlist.c print.c ps.c
2# @(#)Makefile 8.1 (Berkeley) 6/2/93
3
4PROG= ps
5SRCS= fmt.c keyword.c nlist.c print.c ps.c
6WARNS= 5
6WARNS?= 5
7#
8# To support "lazy" ps for non root/wheel users
9# add -DLAZY_PS to the cflags. This helps
10# keep ps from being an unnecessary load
11# on large systems.
12#
13CFLAGS+=-DLAZY_PS
14DPADD= ${LIBM} ${LIBKVM}
15LDADD= -lm -lkvm
16#BINGRP= kmem
17#BINMODE=2555
18
19.include <bsd.prog.mk>
7#
8# To support "lazy" ps for non root/wheel users
9# add -DLAZY_PS to the cflags. This helps
10# keep ps from being an unnecessary load
11# on large systems.
12#
13CFLAGS+=-DLAZY_PS
14DPADD= ${LIBM} ${LIBKVM}
15LDADD= -lm -lkvm
16#BINGRP= kmem
17#BINMODE=2555
18
19.include <bsd.prog.mk>