Deleted Added
full compact
Makefile (173766) Makefile (211725)
1# $FreeBSD: head/usr.sbin/kldxref/Makefile 173766 2007-11-20 02:07:30Z jb $
1# $FreeBSD: head/usr.sbin/kldxref/Makefile 211725 2010-08-23 22:24:11Z imp $
2
3PROG= kldxref
4MAN= kldxref.8
5SRCS= kldxref.c ef.c ef_obj.c
6
7WARNS?= 2
8CFLAGS+=-fno-strict-aliasing
9
2
3PROG= kldxref
4MAN= kldxref.8
5SRCS= kldxref.c ef.c ef_obj.c
6
7WARNS?= 2
8CFLAGS+=-fno-strict-aliasing
9
10.if exists(ef_${MACHINE_ARCH}.c)
11SRCS+= ef_${MACHINE_ARCH}.c
10.if exists(ef_${MACHINE_CPUARCH}.c)
11SRCS+= ef_${MACHINE_CPUARCH}.c
12.else
13SRCS+= ef_nop.c
14.endif
15
16.include <bsd.prog.mk>
12.else
13SRCS+= ef_nop.c
14.endif
15
16.include <bsd.prog.mk>