diff options
author | Willy Tarreau <w@1wt.eu> | 2006-07-16 14:53:39 +0200 |
---|---|---|
committer | Willy Tarreau <willy@wtap.(none)> | 2006-07-26 11:51:24 +0200 |
commit | cd97a35e24dcb6728b06f9974ed9ba49d07227b8 (patch) | |
tree | 7dd9977f67ec52b4853cdd6f6b104d533c801853 /lcd/Makefile | |
parent | [RELEASE] flxutils-0.1.22 (diff) | |
download | flxutils-cd97a35e24dcb6728b06f9974ed9ba49d07227b8.tar.xz |
[RELEASE] flxutils-0.1.23v0.1.23
Diffstat (limited to 'lcd/Makefile')
-rw-r--r-- | lcd/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lcd/Makefile b/lcd/Makefile new file mode 100644 index 0000000..06e0926 --- /dev/null +++ b/lcd/Makefile @@ -0,0 +1,9 @@ +OBJS=lcdwrite lcdtee +include ../include/rules.make +CFLAGS+=-fomit-frame-pointer + +%: %.c + $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< + strip -R .comment -R .note $@ + objdump -h $@ | grep -q '\.data[ ]*00000000' && strip -R .data $@ || true + sstrip $@ |