aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2006-03-08 13:19:19 -0500
committerJunio C Hamano <junkio@cox.net>2006-03-09 01:35:07 -0800
commit3d99a7f4fab41bb057d62c87cb596069a5aba106 (patch)
tree7b9f4d6fb7a646403a7ee557624d234ceb3a5bc5 /Makefile
parentbbe60241ae9f16c9356592e3fbaa709b6b848c4a (diff)
downloadgit-3d99a7f4fab41bb057d62c87cb596069a5aba106.tar.gz
git-3d99a7f4fab41bb057d62c87cb596069a5aba106.tar.xz
test-delta needs zlib to compile
Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1c555daa4..cd2c2db19 100644
--- a/Makefile
+++ b/Makefile
@@ -564,7 +564,7 @@ test-date$X: test-date.c date.o ctype.o
$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) test-date.c date.o ctype.o
test-delta$X: test-delta.c diff-delta.o patch-delta.o
- $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $^
+ $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $^ -lz
check:
for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; done