1# $FreeBSD$ 2 3# netlib gdtoa sources 4.PATH: ${.CURDIR}/gdtoa 5 6MISRCS+=_hdtoa.c _ldtoa.c glue.c 7GDTOASRCS+=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 11CFLAGS+=-I${.CURDIR}/../../contrib/gdtoa 12 13.for src in ${GDTOASRCS} 14MISRCS+=gdtoa_${src} 15CLEANFILES+=gdtoa_${src} 16gdtoa_${src}: 17 ln -sf ${.CURDIR}/../../contrib/gdtoa/${src} ${.TARGET} 18.endfor 19