aboutsummaryrefslogtreecommitdiff
path: root/ifenslave/Makefile
diff options
context:
space:
mode:
authorWilly Tarreau <w@1wt.eu>2006-07-16 14:53:36 +0200
committerWilly Tarreau <willy@wtap.(none)>2006-07-26 11:51:24 +0200
commit1e48ff42d281fb08b9d250ed2e3d5951992ad74c (patch)
tree2f7d0ca9431e1204028d139c56311519e6a78722 /ifenslave/Makefile
parent[RELEASE] flxutils-0.1.20 (diff)
downloadflxutils-1e48ff42d281fb08b9d250ed2e3d5951992ad74c.tar.xz
[RELEASE] flxutils-0.1.21v0.1.21
Diffstat (limited to 'ifenslave/Makefile')
-rw-r--r--ifenslave/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/ifenslave/Makefile b/ifenslave/Makefile
index 116268d..40e94af 100644
--- a/ifenslave/Makefile
+++ b/ifenslave/Makefile
@@ -12,12 +12,19 @@ ifenslave:
rm -f ifenslave
ln -s ifenslave-1.0.12 ifenslave
-%: %.o
+ifenslave-1.0.11: ifenslave-1.0.11.o
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
strip -R .comment -R .note $@
objdump -h $@ | grep -q '\.data[ ]*00000000' && strip -R .data $@ || true
# sstrip $@
+ifenslave-1.0.12: ifenslave-1.0.12.o
+ $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
+ strip -R .comment -R .note $@
+ objdump -h $@ | grep -q '\.data[ ]*00000000' && strip -R .data $@ || true
+ # sstrip $@
+
+
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<