]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - gnu/usr.bin/cc/include/Makefile
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.git] / gnu / usr.bin / cc / include / Makefile
1 # $FreeBSD$
2
3 .include "../Makefile.inc"
4
5 INCSDIR=${INCLUDEDIR}/gcc/${GCCVER}
6
7 .PATH: ${GCCDIR}/config/${GCC_CPU}
8
9 .if ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "amd64"
10 INCS=   emmintrin.h mmintrin.h pmmintrin.h tmmintrin.h xmmintrin.h mm_malloc.h
11 .elif ${TARGET_ARCH} == "ia64"
12 INCS=   ia64intrin.h
13 .elif ${TARGET_ARCH} == "arm"
14 INCS=   mmintrin.h
15 .elif ${TARGET_ARCH} == "powerpc" || ${TARGET_ARCH} == "powerpc64"
16 INCS=   ppc-asm.h altivec.h spe.h
17 .endif
18
19 mm_malloc.h: pmm_malloc.h
20         @rm -rf ${.TARGET}
21         @cp ${.ALLSRC} ${.TARGET}
22 CLEANFILES+=    mm_malloc.h
23
24 .include <bsd.init.mk>
25 .include <bsd.incs.mk>
26 .include <bsd.obj.mk>