aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-11-02 12:01:06 -0800
committerJunio C Hamano <junkio@cox.net>2005-11-02 16:50:58 -0800
commit4ccafd7a02fd9905cc5382b2c1d5abdb11a7525a (patch)
treef905e610162bd337ecf873c42af19dac365e4a70 /Makefile
parente125c1a717bb732319596d8b792a67c2b7b15ef7 (diff)
downloadgit-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--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 357cb3ec8..488ee365c 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 $@ $^