diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-09 16:40:28 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-09 16:40:28 -0700 |
commit | 4edd44725c621b3a2c6c9c4d8f130ceea2ba355a (patch) | |
tree | 8b8d2a6591053eb738933ac97c952a93f6ecebaf /Makefile | |
parent | 2fc240a7b21c060529c1d2e19d6b483361f81f2a (diff) | |
parent | 06a9f9203570d21f9ef5fe219cdde527dcdf0990 (diff) | |
download | git-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |