diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-19 15:12:02 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-19 15:38:14 -0700 |
commit | ba580aeafb52921025de1efe1c50db34393f9907 (patch) | |
tree | 3bad2a681f7dcb5b04731280993de93fff968349 | |
parent | 1aec7917dc52901c6df301ddc8fea70f5ce0db09 (diff) | |
download | git-ba580aeafb52921025de1efe1c50db34393f9907.tar.gz git-ba580aeafb52921025de1efe1c50db34393f9907.tar.xz |
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 <junkio@cox.net>
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | diff-lib.c (renamed from diff.c) | 0 |
2 files changed, 1 insertions, 1 deletions
@@ -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 |