a35f04fba2
Prefer ${SRCTOP}/foo over ${.CURDIR}/../../foo and ${SRCTOP}/usr.bin/foo over ${.CURDIR}/../foo for paths in Makefiles. Differential Revision: https://reviews.freebsd.org/D9932 Sponsored by: Netflix Silence on: arch@ (twice)
13 lines
227 B
Makefile
13 lines
227 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= w
|
|
SRCS= fmt.c pr_time.c proc_compare.c w.c
|
|
MAN= w.1 uptime.1
|
|
LIBADD= kvm sbuf xo util
|
|
LINKS= ${BINDIR}/w ${BINDIR}/uptime
|
|
|
|
.PATH: ${SRCTOP}/bin/ps
|
|
|
|
.include <bsd.prog.mk>
|