]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.sbin/kldxref/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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_ARCH}.c)
11 SRCS+=  ef_${MACHINE_ARCH}.c
12 .else
13 SRCS+=  ef_nop.c
14 .endif
15
16 .include <bsd.prog.mk>