Clean up the way gdtoa sources are found.

OK'ed by:	das
This commit is contained in:
David E. O'Brien 2003-03-13 18:55:14 +00:00
parent db53f66b42
commit 120a95cb50
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112202
2 changed files with 7 additions and 8 deletions

View File

@ -24,13 +24,6 @@ MDASM=
MIASM=
NOASM=
# XXX Pull in contrib/netlib/gdtoa, but keep the filenames local to
# gdtoa out of libc.
.PATH: ${.CURDIR}/../../contrib/netlib/gdtoa
.include "${.CURDIR}/gdtoa/Makefile.inc"
.PATH:
.PATH: ${.CURDIR}/gdtoa
#
# If there is a machine dependent makefile, use it:
#
@ -40,6 +33,7 @@ NOASM=
.include "${.CURDIR}/db/Makefile.inc"
.include "${.CURDIR}/compat-43/Makefile.inc"
.include "${.CURDIR}/gdtoa/Makefile.inc"
.include "${.CURDIR}/gen/Makefile.inc"
.if ${MACHINE_ARCH} != "powerpc"
.include "${.CURDIR}/gmon/Makefile.inc"

View File

@ -1,6 +1,8 @@
# $FreeBSD$
CFLAGS+=-I${.CURDIR}/../../contrib/gdtoa
# netlib gdtoa sources
.PATH: ${.CURDIR}/gdtoa
MISRCS+=glue.c
GDTOASRCS=dmisc.c dtoa.c gdtoa.c gethex.c gmisc.c \
hd_init.c hexnan.c misc.c smisc.c \
@ -8,6 +10,9 @@ GDTOASRCS=dmisc.c dtoa.c gdtoa.c gethex.c gmisc.c \
.if exists(${.CURDIR}/${MACHINE_ARCH}/stdlib/gdtoa.mk)
.include "${.CURDIR}/${MACHINE_ARCH}/stdlib/gdtoa.mk"
.endif
CFLAGS+=-I${.CURDIR}/../../contrib/gdtoa
.for src in ${GDTOASRCS}
MISRCS+=gdtoa_${src}
CLEANFILES+=gdtoa_${src}