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
40 lines
1 KiB
Makefile
40 lines
1 KiB
Makefile
# $NetBSD: Makefile.inc,v 1.25 2013/08/21 03:09:39 matt Exp $
|
|
|
|
SRCS+= alloca.S byte_swap_2.S byte_swap_4.S bswap64.c divide.S divsi3.S \
|
|
fabs.c flt_rounds.c udivsi3.S
|
|
|
|
CPUFLAGS.divide.S+= -marm
|
|
|
|
# Common ieee754 constants and functions
|
|
SRCS+= infinityf_ieee754.c infinity_ieee754.c infinityl_dbl_ieee754.c
|
|
SRCS+= fpclassifyf_ieee754.c fpclassifyd_ieee754.c
|
|
SRCS+= isfinitef_ieee754.c isfinited_ieee754.c
|
|
SRCS+= isinff_ieee754.c isinfd_ieee754.c
|
|
SRCS+= isnanf_ieee754.c isnand_ieee754.c
|
|
SRCS+= signbitf_ieee754.c signbitd_ieee754.c
|
|
|
|
.if !empty(LIBC_MACHINE_ARCH:Mearm*)
|
|
SRCS+= __aeabi_fcmpun.c __aeabi_dcmpun.c
|
|
SRCS+= __aeabi_idiv0.c __aeabi_ldiv0.c
|
|
.else
|
|
SRCS+= modsi3.S umodsi3.S
|
|
.endif
|
|
|
|
SRCS+= nanf.c
|
|
|
|
SRCS+= setjmp.S
|
|
SRCS+= _setjmp.S
|
|
SRCS+= sigsetjmp.S
|
|
|
|
.if defined(__MINIX)
|
|
# Already defined in sys-minix
|
|
.else
|
|
SRCS+= makecontext.c resumecontext.c swapcontext.S
|
|
|
|
SRCS+= _lwp.c
|
|
.endif
|
|
|
|
LSRCS.arm.gen= Lint_bswap16.c Lint_bswap32.c Lint_swapcontext.c
|
|
LSRCS+= ${LSRCS.arm.gen}
|
|
DPSRCS+= ${LSRCS.arm.gen}
|
|
CLEANFILES+= ${LSRCS.arm.gen}
|