diff options
Diffstat (limited to 'libc/misc')
-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 |