Revision 5b0c5203065d626d5f3b94c2d93574bc7e8123ae authored by Marius Strobl on 19 January 2010, 22:09:45 UTC, committed by Marius Strobl on 19 January 2010, 22:09:45 UTC
Update the sparc64 hardware list regarding machines that will be supported
by 7.3-RELEASE.
1 parent 11783dc
Raw File
Makefile
# $FreeBSD$

PROG=	kldxref
MAN=	kldxref.8
SRCS=	kldxref.c ef.c ef_obj.c

WARNS?=	2
CFLAGS+=-fno-strict-aliasing

.if exists(ef_${MACHINE_ARCH}.c)
SRCS+=	ef_${MACHINE_ARCH}.c
.else
SRCS+=	ef_nop.c
.endif

.include <bsd.prog.mk>
back to top