diff options
author | Willy Tarreau <w@1wt.eu> | 2006-07-16 14:53:38 +0200 |
---|---|---|
committer | Willy Tarreau <willy@wtap.(none)> | 2006-07-26 11:51:24 +0200 |
commit | 4bcb5a84fd7d1ee1da85376a866057b1a2fda1c9 (patch) | |
tree | 76d2e0ec73975d45b559089d4bb716e550d9423b /include | |
parent | [RELEASE] flxutils-0.1.21 (diff) | |
download | flxutils-4bcb5a84fd7d1ee1da85376a866057b1a2fda1c9.tar.xz |
[RELEASE] flxutils-0.1.22v0.1.22
Diffstat (limited to 'include')
-rw-r--r-- | include/rules.make | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/rules.make b/include/rules.make index 14ccdee..b2b6336 100644 --- a/include/rules.make +++ b/include/rules.make @@ -1,5 +1,6 @@ CC=diet gcc -CFLAGS=-mpreferred-stack-boundary=2 -malign-jumps=0 -malign-loops=0 -malign-functions=0 -Os -march=i386 -mcpu=i386 +CFLAGS=$(GCC_ARCH_SMALL) $(GCC_CPU_SMALL) $(GCC_OPT_SMALL) +#-mpreferred-stack-boundary=2 -malign-jumps=0 -malign-loops=0 -malign-functions=0 -Os -march=i386 -mcpu=i386 LDFLAGS=-s all: $(OBJS) @@ -8,12 +9,14 @@ all: $(OBJS) $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< strip -R .comment -R .note $@ objdump -h $@ | grep -q '\.data[ ]*00000000' && strip -R .data $@ || true - sstrip $@ + objdump -h $@ | grep -q '\.sbss[ ]*00000000' && strip -R .sbss $@ || true + -sstrip $@ %-debug: %.c $(CC) $(LDFLAGS) $(CFLAGS) -DDEBUG -o $@ $< strip -R .comment -R .note $@ objdump -h $@ | grep -q '\.data[ ]*00000000' && strip -R .data $@ || true + objdump -h $@ | grep -q '\.sbss[ ]*00000000' && strip -R .sbss $@ || true clean: @rm -f *.[ao] *~ core |