]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/gcore/Makefile
Move SYSCTL_ADD_PROC() to unlocked context in if_ure to avoid lock order reversal.
[FreeBSD/FreeBSD.git] / usr.bin / gcore / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD$
3
4 PROG=   gcore
5 SRCS=   elfcore.c gcore.c
6 LIBADD= sbuf util
7
8 .if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_ARCH} == "amd64" || \
9     ${MACHINE_ARCH} == "powerpc64"
10 SRCS+=  elf32core.c
11 .endif
12
13 WARNS?= 1
14
15 .include <bsd.prog.mk>