diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-20 00:03:55 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-20 00:03:55 +0000 |
commit | 430e386b9e69bf3a71c0e2cc06b7094d53ab6501 (patch) | |
tree | 0b17aafc4019eb779c9ed96bcf063c676a6b0a16 /libc/inet/rpc | |
parent | 9b7d191055ade5069c6325fa857e007b4c658b14 (diff) |
Strip all object files of all non global symbols and .note and
.comment, saving a lot of space in the resultant binaries...
-Erik
Diffstat (limited to 'libc/inet/rpc')
-rw-r--r-- | libc/inet/rpc/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/inet/rpc/Makefile b/libc/inet/rpc/Makefile index dfa68e055..d62851ea9 100644 --- a/libc/inet/rpc/Makefile +++ b/libc/inet/rpc/Makefile @@ -39,6 +39,10 @@ COBJS=$(patsubst %.c,%.o, $(CSRC)) all: $(COBJS) $(LIBC) +$(COBJS): + $(CC) $(CFLAGS) $< -c $*.c -o $*.o + $(STRIPTOOL) -x -R .note -R .comment $*.o + $(LIBC): $(COBJS) $(AR) $(ARFLAGS) $(LIBC) $(COBJS) |