summaryrefslogtreecommitdiff
path: root/libc/misc/internals/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-02-08 10:12:24 +0000
committerEric Andersen <andersen@codepoet.org>2003-02-08 10:12:24 +0000
commit54ebe998d5ebf7ac1337a2bfdf804c9fd060e48e (patch)
tree500886d301018aa745fc841c9da908bdae2dcc1e /libc/misc/internals/Makefile
parent331427d6db02704f85cb90335ceaf64f1ed67e5e (diff)
Fixup handling of the .note.ABI-tag section so that it is ARM only,
and so it actually works as intended allowing binaries on ARM to be debugged. -Erik
Diffstat (limited to 'libc/misc/internals/Makefile')
-rw-r--r--libc/misc/internals/Makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/libc/misc/internals/Makefile b/libc/misc/internals/Makefile
index 1e772ce60..e9dd86b80 100644
--- a/libc/misc/internals/Makefile
+++ b/libc/misc/internals/Makefile
@@ -25,13 +25,9 @@ TOPDIR=../../../
include $(TOPDIR)Rules.mak
CSRC=__uClibc_main.c tempname.c errno.c __errno_location.c __h_errno_location.c
-
COBJS=$(patsubst %.c,%.o, $(CSRC))
-SSRC=abi-note.S
-SOBJS=$(patsubst %.S,%.o, $(SSRC))
-
-OBJS=$(COBJS) $(SOBJS)
+OBJS=$(COBJS)
all: $(OBJS) interp.o $(LIBC)
@@ -56,10 +52,6 @@ $(COBJS): %.o : %.c
$(CC) $(CFLAGS) -c $< -o $@
$(STRIPTOOL) -x -R .note -R .comment $*.o
-$(SOBJS): %.o : %.S
- $(CC) $(CFLAGS) -c $< -o $@
- $(STRIPTOOL) -x -R .note -R .comment $*.o
-
clean:
rm -f *.[oa] interp.c *~ core