diff options
Diffstat (limited to 'libc/string/Makefile')
-rw-r--r-- | libc/string/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libc/string/Makefile b/libc/string/Makefile index 0bdb925fd..39d9f0b5d 100644 --- a/libc/string/Makefile +++ b/libc/string/Makefile @@ -47,11 +47,15 @@ ar-target: $(OBJS) $(MOBJ): $(MSRC) $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o + $(STRIPTOOL) -x -R .note -R .comment $*.o $(MOBJ1): $(MSRC1) $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o + $(STRIPTOOL) -x -R .note -R .comment $*.o -$(OBJS): Makefile +$(COBJS): + $(CC) $(CFLAGS) $< -c $*.c -o $*.o + $(STRIPTOOL) -x -R .note -R .comment $*.o clean: rm -f *.[oa] *~ core |