Makefile revision 1.1
1#	$NetBSD: Makefile,v 1.1 2011/06/21 06:03:15 mrg Exp $
2
3.include "../Makefile.inc"
4
5.if ${MACHINE_CPU} == "powerpc"
6INCS=	altivec.h
7.elif ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
8INCS=	emmintrin.h mmintrin.h pmmintrin.h xmmintrin.h mm_malloc.h
9
10# We don't have posix_memalign, so use the gmm_malloc.h version.
11mm_malloc.h: ${DIST}/gcc/config/i386/gmm_malloc.h
12	cp $> ${.TARGET}
13
14CLEANFILES+=	mm_malloc.h
15.endif
16
17INCSDIR=	/usr/include/gcc-4.5
18
19.include <bsd.prog.mk>
20
21.PATH: ${G_out_file:H}
22