diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-02 23:50:51 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-02 23:50:51 +0000 |
commit | 39d74aae955e53852e4dbfbcd634c61cb8f31747 (patch) | |
tree | 78f89c5aa461aa348efb0c207f93087b045937ad /libc/misc/internals/Makefile | |
parent | 6264eafa58e25b3b67c80b51b8ddc17bc50e2213 (diff) |
Patch from James Graves <jgraves@deltamobile.com> to get
m68k started. Should be just sysdeps/linux/m68k left to
hack at this point...
Diffstat (limited to 'libc/misc/internals/Makefile')
-rw-r--r-- | libc/misc/internals/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libc/misc/internals/Makefile b/libc/misc/internals/Makefile index b9168288e..be19bbf7b 100644 --- a/libc/misc/internals/Makefile +++ b/libc/misc/internals/Makefile @@ -24,7 +24,11 @@ TOPDIR=../../ include $(TOPDIR)Rules.mak LIBC=$(TOPDIR)libc.a -CSRC=ultostr.c ltostr.c ulltostr.c lltostr.c zoicheck.c dtostr.c +CSRC=ultostr.c ltostr.c ulltostr.c lltostr.c zoicheck.c +ifeq ($(HAS_FLOATS),true) + CSRC += dtostr.c +endif + COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(COBJS) |