Browse Source

Fixup depends

Eric Andersen 22 years ago
parent
commit
b3f7002fd8
1 changed files with 3 additions and 3 deletions
  1. 3 3
      libc/misc/internals/Makefile

+ 3 - 3
libc/misc/internals/Makefile

@@ -48,15 +48,15 @@ interp.c: Makefile
 		"(\".interp\"))) =\""$(DYNAMIC_LINKER)"\";" >> interp.c
 	echo "#endif" >> interp.c
 
-$(COBJS): %.o : %.c
+interp.o: interp.c
 	$(CC) $(CFLAGS) -c $< -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $*.o
 
-$(SOBJS): %.o : %.S
+$(COBJS): %.o : %.c
 	$(CC) $(CFLAGS) -c $< -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $*.o
 
-interp.o: %.o : %.c
+$(SOBJS): %.o : %.S
 	$(CC) $(CFLAGS) -c $< -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $*.o