From: Junio C Hamano Date: Wed, 2 Nov 2005 20:01:06 +0000 (-0800) Subject: Make test-date buildable again. X-Git-Tag: v0.99.9c^2~12 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=4ccafd7a02fd9905cc5382b2c1d5abdb11a7525a;p=git.git Make test-date buildable again. Now we define and use our own ctype-replacement, we need to link with it. Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 357cb3ec..488ee365 100644 --- a/Makefile +++ b/Makefile @@ -397,8 +397,8 @@ doc: test: all $(MAKE) -C t/ all -test-date$X: test-date.c date.o - $(CC) $(ALL_CFLAGS) -o $@ test-date.c date.o +test-date$X: test-date.c date.o ctype.o + $(CC) $(ALL_CFLAGS) -o $@ test-date.c date.o ctype.o test-delta$X: test-delta.c diff-delta.o patch-delta.o $(CC) $(ALL_CFLAGS) -o $@ $^