diff options
author | Willy Tarreau <w@1wt.eu> | 2006-07-16 14:53:46 +0200 |
---|---|---|
committer | Willy Tarreau <willy@wtap.(none)> | 2006-07-26 11:56:32 +0200 |
commit | 1c0a1c234546c2bb13b88bbd930e773d78f44cbd (patch) | |
tree | 31d284518080e0d486b9688c223940ef16f0ce18 /lcd | |
parent | [RELEASE] flxutils-0.1.27 (diff) | |
download | flxutils-1c0a1c234546c2bb13b88bbd930e773d78f44cbd.tar.xz |
[RELEASE] flxutils-0.1.28v0.1.28
Diffstat (limited to 'lcd')
-rw-r--r-- | lcd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lcd/Makefile b/lcd/Makefile index 06e0926..573dad8 100644 --- a/lcd/Makefile +++ b/lcd/Makefile @@ -4,6 +4,6 @@ CFLAGS+=-fomit-frame-pointer %: %.c $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< - strip -R .comment -R .note $@ - objdump -h $@ | grep -q '\.data[ ]*00000000' && strip -R .data $@ || true + $(STRIP) -x --strip-unneeded -R .comment -R .note $@ + $(OBJDUMP) -h $@ | grep -q '\.data[ ]*00000000' && $(STRIP) -R .data $@ || true sstrip $@ |