diff options
Diffstat (limited to 'libc/stdlib')
| -rw-r--r-- | libc/stdlib/Makefile | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/libc/stdlib/Makefile b/libc/stdlib/Makefile index e4b28979c..5d7c9405a 100644 --- a/libc/stdlib/Makefile +++ b/libc/stdlib/Makefile @@ -36,8 +36,11 @@ MSRC2=atexit.c  MOBJ2=on_exit.o atexit.o __do_exit.o exit.o -CSRC =	abort.c getenv.c  mktemp.c  qsort.c  realpath.c strtod.c \ -	abs.c   bsearch.c mkstemp.c putenv.c rand.c setenv.c  system.c +CSRC =	abort.c getenv.c mktemp.c qsort.c realpath.c abs.c bsearch.c \ +	mkstemp.c putenv.c rand.c setenv.c system.c +ifeq ($(HAS_FLOATS),true) +	CSRC += strtod.c +endif  COBJS=$(patsubst %.c,%.o, $(CSRC)) | 
