Home | History | Annotate | Line # | Download | only in include
Makefile revision 1.2
      1 #	$NetBSD: Makefile,v 1.2 2011/06/29 08:37:10 mrg Exp $
      2 
      3 .include "../Makefile.inc"
      4 
      5 .if ${MACHINE_CPU} == "powerpc"
      6 INCS=	altivec.h
      7 .elif ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
      8 INCS= \
      9 	mmintrin.h \
     10 	mm3dnow.h \
     11 	xmmintrin.h \
     12 	emmintrin.h \
     13 	pmmintrin.h \
     14 	tmmintrin.h \
     15 	ammintrin.h \
     16 	smmintrin.h \
     17 	nmmintrin.h \
     18 	bmmintrin.h \
     19 	fma4intrin.h \
     20 	wmmintrin.h \
     21 	immintrin.h \
     22 	x86intrin.h \
     23 	avxintrin.h \
     24 	xopintrin.h \
     25 	ia32intrin.h \
     26 	popcntintrin.h \
     27 	lwpintrin.h \
     28 	abmintrin.h
     29 
     30 # XXX this comment is no longer true:
     31 # We don't have posix_memalign, so use the gmm_malloc.h version.
     32 mm_malloc.h: ${DIST}/gcc/config/i386/gmm_malloc.h
     33 	cp $> ${.TARGET}
     34 
     35 CLEANFILES+=	mm_malloc.h
     36 .endif
     37 
     38 INCSDIR=	/usr/include/gcc-4.5
     39 
     40 .include <bsd.prog.mk>
     41 
     42 .PATH: ${G_out_file:H}
     43