diff options
author | Junio C Hamano <junkio@cox.net> | 2005-11-02 12:01:06 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-02 16:50:58 -0800 |
commit | 4ccafd7a02fd9905cc5382b2c1d5abdb11a7525a (patch) | |
tree | f905e610162bd337ecf873c42af19dac365e4a70 /Makefile | |
parent | e125c1a717bb732319596d8b792a67c2b7b15ef7 (diff) | |
download | git-4ccafd7a02fd9905cc5382b2c1d5abdb11a7525a.tar.gz git-4ccafd7a02fd9905cc5382b2c1d5abdb11a7525a.tar.xz |
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 <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 $@ $^ |