]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/gdtoa/Makefile.inc
MFV: zlib: examples: define functions as static ones. (PR #855)
[FreeBSD/FreeBSD.git] / lib / libc / gdtoa / Makefile.inc
1
2 # netlib gdtoa sources
3 .PATH: ${LIBC_SRCTOP}/gdtoa
4
5 MISRCS+=_hdtoa.c _hldtoa.c _ldtoa.c glue.c
6 GDTOASRCS+=dmisc.c dtoa.c gdtoa.c gethex.c gmisc.c \
7         hd_init.c hexnan.c misc.c smisc.c \
8         strtod.c strtodg.c strtof.c strtord.c sum.c ulp.c
9
10 SYM_MAPS+=${LIBC_SRCTOP}/gdtoa/Symbol.map
11
12 CFLAGS+=-I${SRCTOP}/contrib/gdtoa
13
14 .for src in ${GDTOASRCS}
15 MISRCS+=gdtoa_${src}
16 CLEANFILES+=gdtoa_${src}
17 gdtoa_${src}: ${SRCTOP}/contrib/gdtoa/${src} .NOMETA
18         ln -sf ${.ALLSRC} ${.TARGET}
19 CFLAGS.gdtoa_${src}+=-fno-strict-aliasing
20 .endfor