summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-05-09 16:40:28 -0700
committerJunio C Hamano <junkio@cox.net>2006-05-09 16:40:28 -0700
commit4edd44725c621b3a2c6c9c4d8f130ceea2ba355a (patch)
tree8b8d2a6591053eb738933ac97c952a93f6ecebaf /Makefile
parent2fc240a7b21c060529c1d2e19d6b483361f81f2a (diff)
parent06a9f9203570d21f9ef5fe219cdde527dcdf0990 (diff)
downloadgit-4edd44725c621b3a2c6c9c4d8f130ceea2ba355a.tar.gz
Merge branch 'np/delta'
* np/delta: improve diff-delta with sparse and/or repetitive data tiny optimization to diff-delta replace adler32 with Rabin's polynomial in diff-delta use delta index data when finding best delta matches split the diff-delta interface
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 814010d7b4..37fbe789d3 100644
--- a/Makefile
+++ b/Makefile
@@ -607,7 +607,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) $^ -lz
+ $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $^
check:
for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; done