diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-05-28 14:38:12 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-05-28 14:38:12 +0000 |
commit | eba708a62b5bb255a3ba79ab29e9259118aaef34 (patch) | |
tree | 449e93560ecdad1ce9b16edb1f9d01510abf97a0 /libc/stdlib/Makefile | |
parent | 54ebc8099e32cb836c33bbb3744e6e498d6257af (diff) | |
download | uClibc-alpine-eba708a62b5bb255a3ba79ab29e9259118aaef34.tar.bz2 uClibc-alpine-eba708a62b5bb255a3ba79ab29e9259118aaef34.tar.xz |
Make selection of uClibc floating point support in printf, etc. seperate
from libm float function support. Also, move all Config files out of the
main directory.
Diffstat (limited to 'libc/stdlib/Makefile')
-rw-r--r-- | libc/stdlib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/Makefile b/libc/stdlib/Makefile index c8fde662b..6a5db9f34 100644 --- a/libc/stdlib/Makefile +++ b/libc/stdlib/Makefile @@ -39,7 +39,7 @@ MOBJ2=atexit.o exit.o CSRC = abort.c getenv.c mktemp.c qsort.c realpath.c abs.c bsearch.c \ mkstemp.c putenv.c rand.c random.c setenv.c system.c div.c ldiv.c \ getpt.c ptsname.c grantpt.c unlockpt.c -ifeq ($(HAS_FLOATS),true) +ifeq ($(HAS_FLOATING_POINT),true) CSRC += strtod.c endif COBJS=$(patsubst %.c,%.o, $(CSRC)) |