e415d48872
Bumping libc files for unsupported architectures, to simplify merging. A bunch of small fixes: * in libutil update * the macro in endian.h * some undefined types due to clear separation from host. * Fix a warning for cdbr.c Some modification which were required for the new build system: * inclusion path for const.h in sconst, still hacky * Removed default malloc.c which conflicts on some occasions.
25 lines
753 B
Makefile
25 lines
753 B
Makefile
# $NetBSD: Makefile.inc,v 1.12 2011/07/09 04:12:01 matt Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SRCS+= __sigaction14_sigtramp.c __sigtramp2.S
|
|
|
|
CPPFLAGS+= -I.
|
|
CPPFLAGS.assym.h+=-D__LIBC12_SOURCE__
|
|
|
|
.if ${MKSOFTFLOAT} != "no"
|
|
.include <softfloat/Makefile.inc>
|
|
CPPFLAGS+= -DSOFTFLOAT
|
|
|
|
SRCS+= fixunsgen_ieee754.c fixunssfsi_ieee754.c fixunsdfsi_ieee754.c
|
|
SRCS+= fixunsgen64_ieee754.c #fixunssfdi.c fixunsdfdi.c
|
|
.if (${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el") \
|
|
&& (!defined(CPUFLAGS) || empty(CPUFLAGS:M-mabi=32))
|
|
SRCS+= fixunstfsi_ieee754.c fixunstfdi_ieee754.c
|
|
.endif
|
|
.endif
|
|
|
|
.if (${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el") \
|
|
&& (!defined(CPUFLAGS) || empty(CPUFLAGS:M-mabi=32))
|
|
SRCS+= floatunditf_ieee754.c
|
|
.endif
|