Remove building with NOCRYPTO option
[minix.git] / lib / libc / arch / sparc64 / Makefile.inc
blob7d15033036fbf7ccd6d93129102f61843340ffcf
1 #       $NetBSD: Makefile.inc,v 1.20 2015/04/15 19:13:46 mrg Exp $
3 SRCS+=  __sigaction14_sigtramp.c __sigtramp2.S
5 # Some assembler files use v9a extensions.
6 AFLAGS+= -Wa,-Av9a
8 .PATH: ${ARCHDIR}/softfloat
9 SRCS+= qp.c
10 CPPFLAGS+=      -DSOFTFLOATSPARC64_FOR_GCC -DEXCEPTIONS_WITH_SOFTFLOAT
11 CPPFLAGS+=      -DSOFTFLOAT_NEED_FIXUNS
12 .if ${MKSOFTFLOAT} != "no"
13 .include <softfloat/Makefile.inc>
14 .else
16 # Can't directly use softfloat.c due to .PATH issues with the other source
17 # in softfloat. Just provide a wrapper which pulls it in via a #include
18 SRCS.softfloat= softfloat-wrapper.c
19 SRCS+= ${SRCS.softfloat}
20 CPPFLAGS+=      -I${ARCHDIR}/softfloat -I${.CURDIR}/softfloat \
21                 -I${.CURDIR}/softfloat/bits64
23 .endif