1992e9a10c
ARM EABI support is disabled by default and can be enabled by setting WITH_ARM_EABI when building, however only the kernel-toolchain target will work with this flag until the rest of the support is added.
20 lines
333 B
Makefile
20 lines
333 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
# Use our headers in preference to ones from ../cc_tools.
|
|
CFLAGS+= -I${.CURDIR} -I.
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
.PATH: ${GCCLIB}/libdecnumber
|
|
|
|
LIB= decnumber
|
|
SRCS= decNumber.c decContext.c decUtility.c \
|
|
decimal32.c decimal64.c decimal128.c
|
|
|
|
INTERNALLIB=
|
|
WARNS?= 1
|
|
|
|
.include <bsd.lib.mk>
|