]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - usr.sbin/kldxref/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.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>