Makefile revision 160820
1# $FreeBSD: head/usr.sbin/kldxref/Makefile 160820 2006-07-29 19:43:26Z marcel $
2
3PROG=	kldxref
4MAN=	kldxref.8
5SRCS=	kldxref.c ef.c ef_obj.c
6
7WARNS?=	2
8
9.if ${MACHINE_ARCH} == powerpc
10LDFLAGS+=-static
11.endif
12
13.if exists(ef_${MACHINE_ARCH}.c)
14SRCS+=	ef_${MACHINE_ARCH}.c
15.else
16SRCS+=	ef_nop.c
17.endif
18
19.include <bsd.prog.mk>
20