diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-09 01:11:11 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-09 01:35:13 -0700 |
commit | 5f1c3f07b7f4a8436c7773b8e7a04998190c125e (patch) | |
tree | 8f4a65b672406b4fb3be5036716f304474e1e88d /Makefile | |
parent | 0ed49a3ed9ab9747f7916c928d50aa0bf4d2c81d (diff) | |
download | git-5f1c3f07b7f4a8436c7773b8e7a04998190c125e.tar.gz git-5f1c3f07b7f4a8436c7773b8e7a04998190c125e.tar.xz |
log-tree: separate major part of diff-tree.
This separates out the part that deals with one-commit diff-tree
(and --stdin form) into a separate log-tree module.
There are two goals with this. The more important one is to be
able to make this part available to "git log --diff", so that we
can have a native "git whatchanged" command. Another is to
simplify the commit log generation part simpler.
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
@@ -194,12 +194,12 @@ LIB_H = \ blob.h cache.h commit.h csum-file.h delta.h \ diff.h object.h pack.h pkt-line.h quote.h refs.h \ run-command.h strbuf.h tag.h tree.h git-compat-util.h revision.h \ - tree-walk.h + tree-walk.h log-tree.h DIFF_OBJS = \ diff.o diffcore-break.o diffcore-order.o diffcore-pathspec.o \ diffcore-pickaxe.o diffcore-rename.o tree-diff.o combine-diff.o \ - diffcore-delta.o + diffcore-delta.o log-tree.o LIB_OBJS = \ blob.o commit.o connect.o csum-file.o \ |