blob: b445a64ce23179b9fd14bfff4760fe8710d2e7ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: Makefile,v 1.2 2004/05/08 09:13:49 martin Exp $
NOOBJ= # defined
.if ${MACHINE_ARCH} == "powerpc"
INCS= altivec.h
.elif ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
INCS= emmintrin.h mmintrin.h xmmintrin.h
.endif
INCSDIR= /usr/include
.include <bsd.prog.mk>
.PATH: ${G_out_file:H}
|