diff options
Diffstat (limited to 'libc/misc/internals/Makefile')
-rw-r--r-- | libc/misc/internals/Makefile | 10 |
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 |