]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.sbin/kldxref/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / usr.sbin / kldxref / Makefile
1 # $FreeBSD$
2
3 PROG=   kldxref
4 MAN=    kldxref.8
5 SRCS=   kldxref.c ef.c ef_obj.c
6
7 WARNS?= 2
8 CFLAGS+=-fno-strict-aliasing
9
10 .if exists(ef_${MACHINE_CPUARCH}.c) && ${MACHINE_ARCH} != "powerpc64"
11 SRCS+=  ef_${MACHINE_CPUARCH}.c
12 .else
13 SRCS+=  ef_nop.c
14 .endif
15
16 .include <bsd.prog.mk>