diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-10-25 15:00:40 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-10-25 15:00:40 +0000 |
commit | b3f7002fd8f5feaa67b1d0e8bbb910e287310818 (patch) | |
tree | 6a10221c589593fb6b8665607ec645a76305305a | |
parent | dd91422c648ed7df631c79789a8bd1665a7edb76 (diff) |
Fixup depends
-rw-r--r-- | libc/misc/internals/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/misc/internals/Makefile b/libc/misc/internals/Makefile index edb2ce471..a33afef60 100644 --- a/libc/misc/internals/Makefile +++ b/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 |