]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libc/gdtoa/Makefile.inc
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libc / gdtoa / Makefile.inc
1 # $FreeBSD$
2
3 # netlib gdtoa sources
4 .PATH: ${.CURDIR}/gdtoa
5
6 MISRCS+=_hdtoa.c _hldtoa.c _ldtoa.c glue.c
7 GDTOASRCS+=dmisc.c dtoa.c gdtoa.c gethex.c gmisc.c \
8         hd_init.c hexnan.c misc.c smisc.c \
9         strtod.c strtodg.c strtof.c strtord.c sum.c ulp.c
10
11 SYM_MAPS+=${.CURDIR}/gdtoa/Symbol.map
12
13 CFLAGS+=-I${.CURDIR}/../../contrib/gdtoa
14
15 .for src in ${GDTOASRCS}
16 MISRCS+=gdtoa_${src}
17 CLEANFILES+=gdtoa_${src}
18 gdtoa_${src}:
19         ln -sf ${.CURDIR}/../../contrib/gdtoa/${src} ${.TARGET}
20 .endfor