]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.bin/procstat/Makefile
MFC r318325:
[FreeBSD/stable/10.git] / usr.bin / procstat / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 PROG=   procstat
6 MAN=    procstat.1
7 SRCS=   procstat.c              \
8         procstat_args.c         \
9         procstat_auxv.c         \
10         procstat_basic.c        \
11         procstat_bin.c          \
12         procstat_cred.c         \
13         procstat_cs.c           \
14         procstat_files.c        \
15         procstat_kstack.c       \
16         procstat_rlimit.c       \
17         procstat_rusage.c       \
18         procstat_sigs.c         \
19         procstat_threads.c      \
20         procstat_vm.c
21
22 LDADD+= -lutil -lprocstat -lkvm
23 DPADD+= ${LIBUTIL} ${LIBPROCSTAT} ${LIBKVM}
24
25 .if ${MK_TESTS} != "no"
26 SUBDIR+=        tests
27 .endif
28
29 .include <bsd.prog.mk>