84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
41 lines
1,017 B
Makefile
41 lines
1,017 B
Makefile
# $NetBSD: Makefile.inc,v 1.25 2013/09/03 00:30:19 matt Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if !defined(__MINIX)
|
|
SRCS+= __aeabi_read_tp.S __sigaction14_sigtramp.c __sigtramp2.S
|
|
.endif
|
|
|
|
.if empty(LIBC_MACHINE_ARCH:Mearmv7*)
|
|
AFLAGS+= -marm
|
|
.endif
|
|
|
|
CPPFLAGS += -I.
|
|
|
|
.if !empty(LIBC_MACHINE_ARCH:Mearm*)
|
|
SRCS+= __aeabi_ldivmod.S __aeabi_uldivmod.S
|
|
SRCS+= __aeabi_lcmp.c __aeabi_ulcmp.c
|
|
SRCS+= fixunsgen_ieee754.c fixunssfsi_ieee754.c
|
|
SRCS+= fixunsgen64_ieee754.c fixunsdfsi_ieee754.c
|
|
SRCS+= arm_initfini.c
|
|
.endif
|
|
|
|
.if ${MKSOFTFLOAT} != "no"
|
|
CPPFLAGS += -DSOFTFLOAT
|
|
|
|
# for earm, use the 64-bit softfloat
|
|
.if ${LIBC_MACHINE_ARCH} == "arm" || ${LIBC_MACHINE_ARCH} == "armeb"
|
|
SOFTFLOAT_BITS=32
|
|
#SRCS+= floatunsidf_ieee754.c floatunsisf_ieee754.c
|
|
.endif
|
|
|
|
.include <softfloat/Makefile.inc>
|
|
.else
|
|
.PATH : ${ARCHDIR}/hardfloat
|
|
SRCS.hardfloat+= fpgetround.c fpgetsticky.S fpgetmask.S
|
|
SRCS.hardfloat+= fpsetround.c fpsetmask.S fpsetsticky.S
|
|
.for f in ${SRCS.hardfloat}
|
|
CPPFLAGS.${f} += -mfpu=vfp
|
|
.endfor
|
|
SRCS+= ${SRCS.hardfloat}
|
|
.endif
|