From eba708a62b5bb255a3ba79ab29e9259118aaef34 Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Mon, 28 May 2001 14:38:12 +0000 Subject: 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. --- libm/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libm/Makefile') diff --git a/libm/Makefile b/libm/Makefile index 22e6c8e1c..c07190fb1 100644 --- a/libm/Makefile +++ b/libm/Makefile @@ -28,13 +28,13 @@ LIBM_SHARED_FULLNAME=libm-$(MAJOR_VERSION).$(MINOR_VERSION).so TARGET_CC= $(TOPDIR)extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc DIRS= -ifeq ($(strip $(HAS_FLOATS)),true) +ifeq ($(strip $(HAS_LIBM_FLOAT)),true) DIRS+=float endif -ifeq ($(strip $(HAS_DOUBLE)),true) +ifeq ($(strip $(HAS_LIBM_DOUBLE)),true) DIRS+=double endif -ifeq ($(strip $(HAS_LONG_DOUBLE)),true) +ifeq ($(strip $(HAS_LIBM_LONG_DOUBLE)),true) DIRS+=ldouble endif ALL_SUBDIRS = float double ldouble @@ -50,7 +50,7 @@ $(LIBM): subdirs tags: ctags -R - + shared: all if [ -f $(LIBM) ] ; then \ $(TARGET_CC) $(LDFLAGS) -shared -o $(LIBM_SHARED_FULLNAME) \ -- cgit v1.2.3