From ba580aeafb52921025de1efe1c50db34393f9907 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Wed, 19 Apr 2006 15:12:02 -0700 Subject: [PATCH] diff: move diff.c to diff-lib.c to make room. Now I am not doing any real "git-diff in C" yet, but this would help before doing so. Signed-off-by: Junio C Hamano --- Makefile | 2 +- diff.c => diff-lib.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename diff.c => diff-lib.c (100%) diff --git a/Makefile b/Makefile index 8aed3af01..3ecd674c1 100644 --- a/Makefile +++ b/Makefile @@ -199,7 +199,7 @@ LIB_H = \ tree-walk.h log-tree.h DIFF_OBJS = \ - diff.o diffcore-break.o diffcore-order.o \ + diff-lib.o diffcore-break.o diffcore-order.o \ diffcore-pickaxe.o diffcore-rename.o tree-diff.o combine-diff.o \ diffcore-delta.o log-tree.o diff --git a/diff.c b/diff-lib.c similarity index 100% rename from diff.c rename to diff-lib.c -- 2.11.0