summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/arm/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-10-23 18:22:42 +0000
committerEric Andersen <andersen@codepoet.org>2000-10-23 18:22:42 +0000
commit56c9a8402ff4c9004331efc77e5a5fe62aa65014 (patch)
tree35c951c3744cbc129e8097dff0a3b71a56395439 /libc/sysdeps/linux/arm/Makefile
parent463cd4eacdf5ba54fabcdaddf50b141bf239719b (diff)
Dependancy fix
Diffstat (limited to 'libc/sysdeps/linux/arm/Makefile')
-rw-r--r--libc/sysdeps/linux/arm/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/arm/Makefile b/libc/sysdeps/linux/arm/Makefile
index 94f80ac04..2146ef053 100644
--- a/libc/sysdeps/linux/arm/Makefile
+++ b/libc/sysdeps/linux/arm/Makefile
@@ -25,7 +25,7 @@ include $(TOPDIR)Rules.mak
LIBC=$(TOPDIR)libc.a
ASFLAGS=$(CFLAGS)
-SSRC=_start.S
+SSRC=_start.S
SOBJS=$(patsubst %.S,%.o, $(SSRC))
MSRC=syscalls.c
@@ -44,8 +44,8 @@ $(LIBC): ar-target
ar-target: $(OBJS)
$(AR) $(ARFLAGS) $(LIBC) $(OBJS)
-$(SOBJS): $(SSRC)
- $(CC) $(CFLAGS) $< -c -o $*.o
+$(SOBJS):
+ $(CC) $(CFLAGS) $< -c $*.S -o $*.o
$(STRIPTOOL) -x -R .note -R .comment $*.o
$(MOBJ): $(MSRC)