Browse Source

Fix dependancy problem

Eric Andersen 24 years ago
parent
commit
463cd4eacd
1 changed files with 3 additions and 2 deletions
  1. 3 2
      libc/sysdeps/linux/i386/Makefile

+ 3 - 2
libc/sysdeps/linux/i386/Makefile

@@ -44,10 +44,11 @@ $(LIBC): ar-target
 ar-target: $(OBJS)
 ar-target: $(OBJS)
 	$(AR) $(ARFLAGS) $(LIBC) $(OBJS)
 	$(AR) $(ARFLAGS) $(LIBC) $(OBJS)
 
 
-$(SOBJS): $(SSRC)
+$(SOBJS):
-	$(CC) $(CFLAGS) $< -c -o $*.o
+	$(CC) $(CFLAGS) $< -c $*.S -o $*.o
 	$(STRIPTOOL) -x -R .note -R .comment $*.o
 	$(STRIPTOOL) -x -R .note -R .comment $*.o
 
 
+
 $(MOBJ): $(MSRC)
 $(MOBJ): $(MSRC)
 	$(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
 	$(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
 	$(STRIPTOOL) -x -R .note -R .comment $*.o
 	$(STRIPTOOL) -x -R .note -R .comment $*.o