mirror of
https://github.com/opnsense/src.git
synced 2026-02-10 06:15:40 -05:00
This includes: o All directories named *ia64* o All files named *ia64* o All ia64-specific code guarded by __ia64__ o All ia64-specific makefile logic o Mention of ia64 in comments and documentation This excludes: o Everything under contrib/ o Everything under crypto/ o sys/xen/interface o sys/sys/elf_common.h Discussed at: BSDcan
26 lines
691 B
Makefile
26 lines
691 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
INCSDIR=${INCLUDEDIR}/gcc/${GCCVER}
|
|
|
|
.PATH: ${GCCDIR}/config/${GCC_CPU} ${.CURDIR}/../../../../contrib/llvm/tools/clang/lib/Headers
|
|
|
|
.if ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "amd64"
|
|
INCS= ammintrin.h emmintrin.h mmintrin.h mm3dnow.h pmmintrin.h \
|
|
tmmintrin.h xmmintrin.h mm_malloc.h
|
|
INCS+= wmmintrin.h __wmmintrin_aes.h __wmmintrin_pclmul.h
|
|
.elif ${TARGET_ARCH} == "arm"
|
|
INCS= mmintrin.h
|
|
.elif ${TARGET_ARCH} == "powerpc" || ${TARGET_ARCH} == "powerpc64"
|
|
INCS= ppc-asm.h altivec.h spe.h
|
|
.endif
|
|
|
|
mm_malloc.h: pmm_malloc.h
|
|
@rm -rf ${.TARGET}
|
|
@cp ${.ALLSRC} ${.TARGET}
|
|
CLEANFILES+= mm_malloc.h
|
|
|
|
.include <bsd.prog.mk>
|