d511b20a69
`SUBDIR.${MK_TESTS}+= tests` idiom. This is a follow up to r321912.
29 lines
464 B
Makefile
29 lines
464 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= procstat
|
|
MAN= procstat.1
|
|
SRCS= procstat.c \
|
|
procstat_args.c \
|
|
procstat_auxv.c \
|
|
procstat_basic.c \
|
|
procstat_bin.c \
|
|
procstat_cred.c \
|
|
procstat_cs.c \
|
|
procstat_files.c \
|
|
procstat_kstack.c \
|
|
procstat_ptlwpinfo.c \
|
|
procstat_rlimit.c \
|
|
procstat_rusage.c \
|
|
procstat_sigs.c \
|
|
procstat_threads.c \
|
|
procstat_vm.c
|
|
|
|
LIBADD+= procstat xo util sbuf
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|