diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-07 01:07:52 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-07 01:07:52 +0000 |
commit | a6073750005e60f0a643769df89e3c0e69b2a3d7 (patch) | |
tree | 1673ed8ce9ddfd62f009018451faa3a90f511b4a /libc/string | |
parent | 5565cde25062f5be8b8378d727e104922fec7801 (diff) |
Enable multi, because the arch specific versions are non-multi now
Diffstat (limited to 'libc/string')
-rw-r--r-- | libc/string/Makefile.in | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/libc/string/Makefile.in b/libc/string/Makefile.in index ed6b83ce2..f2ae36c60 100644 --- a/libc/string/Makefile.in +++ b/libc/string/Makefile.in @@ -62,7 +62,7 @@ STRING_MOBJW:=$(patsubst %.o,$(STRING_OUT)/%.o,$(MOBJW)) STRING_MOBJx:=$(patsubst %.o,$(STRING_OUT)/%.o,$(MOBJx)) STRING_MOBJWx:=$(patsubst %.o,$(STRING_OUT)/%.o,$(MOBJWx)) -#STRING_DEF:=$(patsubst %,-DL_%,$(subst .o,,$(notdir $(STRING_MOBJ)))) +STRING_DEF:=$(patsubst %,-DL_%,$(subst .o,,$(notdir $(STRING_MOBJ)))) STRING_Wx:=$(STRING_MOBJW) $(STRING_MOBJx) $(STRING_MOBJWx) STRING_OBJS:=$(STRING_MOBJ) $(STRING_Wx) @@ -94,11 +94,9 @@ $(STRING_MOBJWx:.o=.os): $(STRING_MSRC) libc-a-y+=$(STRING_OBJS) libc-so-y+=$(STRING_OBJS:.o=.os) -# multi does not work here, because arch/Makefile.arch uses the same L_* defines -#CFLAGS-multi-y+=$(STRING_DEF) -#libc-multi-y+=$(STRING_MSRC) -#libc-nomulti-y+=$(STRING_Wx) -libc-nomulti-y+=$(STRING_OBJS) +CFLAGS-multi-y+=$(STRING_DEF) +libc-multi-y+=$(STRING_MSRC) +libc-nomulti-y+=$(STRING_Wx) objclean-y+=string_objclean |