Files
netbsd/gnu/usr.bin/gcc4/include/Makefile
2013-04-06 16:48:33 +02:00

22 lines
509 B
Makefile

# $NetBSD: Makefile,v 1.5 2011/04/15 13:42:23 joerg Exp $
.include "../Makefile.inc"
.if ${MACHINE_CPU} == "powerpc"
INCS= altivec.h
.elif ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
INCS= emmintrin.h mmintrin.h pmmintrin.h xmmintrin.h mm_malloc.h
# We don't have posix_memalign, so use the gmm_malloc.h version.
mm_malloc.h: ${DIST}/gcc/config/i386/gmm_malloc.h
cp $> ${.TARGET}
CLEANFILES+= mm_malloc.h
.endif
INCSDIR= /usr/include/gcc-4.1
.include <bsd.prog.mk>
.PATH: ${G_out_file:H}