8876613dc5
if not already defined. This allows building libc from outside of lib/libc using a reach-over makefile. A typical use-case is to build a standard ILP32 version and a COMPAT32 version in a single iteration by building the COMPAT32 version using a reach-over makefile. Obtained from: Juniper Networks, Inc.
21 lines
493 B
Makefile
21 lines
493 B
Makefile
# $FreeBSD$
|
|
|
|
# netlib gdtoa sources
|
|
.PATH: ${LIBC_SRCTOP}/gdtoa
|
|
|
|
MISRCS+=_hdtoa.c _hldtoa.c _ldtoa.c glue.c
|
|
GDTOASRCS+=dmisc.c dtoa.c gdtoa.c gethex.c gmisc.c \
|
|
hd_init.c hexnan.c misc.c smisc.c \
|
|
strtod.c strtodg.c strtof.c strtord.c sum.c ulp.c
|
|
|
|
SYM_MAPS+=${LIBC_SRCTOP}/gdtoa/Symbol.map
|
|
|
|
CFLAGS+=-I${LIBC_SRCTOP}/../../contrib/gdtoa
|
|
|
|
.for src in ${GDTOASRCS}
|
|
MISRCS+=gdtoa_${src}
|
|
CLEANFILES+=gdtoa_${src}
|
|
gdtoa_${src}:
|
|
ln -sf ${LIBC_SRCTOP}/../../contrib/gdtoa/${src} ${.TARGET}
|
|
.endfor
|