Move hardfloat support to its own directory

This commit is contained in:
matt 2013-07-18 21:31:22 +00:00
parent 7f6ec7c998
commit 5ef4c1b707

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.15 2013/07/17 01:41:17 matt Exp $
# $NetBSD: Makefile.inc,v 1.16 2013/07/18 21:31:22 matt Exp $
SRCS+= __sigaction14_sigtramp.c __sigtramp2.S __m68k_read_tp.S __mmap.S
@ -9,4 +9,7 @@ CPPFLAGS+= -I. # for assym.h
.if ${MKSOFTFLOAT} != "no"
CPPFLAGS+= -DSOFTFLOAT_NEED_FIXUNS -DSOFTFLOAT -DSOFTFLOATM68K_FOR_GCC
. include <softfloat/Makefile.inc>
.elif ${MACHINE_ARCH} != "m68000"
.PATH : ${ARCHDIR}/hardfloat
. include "${ARCHDIR}/hardfloat/Makefile.inc"
.endif