diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-03 23:54:34 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-03 23:54:34 -0700 |
commit | 230f544e877641666f8c3718ac4563294c2b305e (patch) | |
tree | ae2c574c6c8384b7b379aff52c035a7b953ff084 /Makefile | |
parent | 6b16250a4551682b026b2592e44077ffa5fbdf2a (diff) | |
parent | 8ab99476ec2298a43e94949e0bb7aa5125793a28 (diff) | |
download | git-230f544e877641666f8c3718ac4563294c2b305e.tar.gz |
Merge branch 'jc/diff'
* jc/diff:
builtin-diff: call it "git-diff", really.
builtin-diff.c: die() formatting type fix.
built-in diff: assorted updates.
built-in diff.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -115,7 +115,7 @@ SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__ SCRIPT_SH = \ git-add.sh git-bisect.sh git-branch.sh git-checkout.sh \ git-cherry.sh git-clean.sh git-clone.sh git-commit.sh \ - git-diff.sh git-fetch.sh \ + git-fetch.sh \ git-format-patch.sh git-ls-remote.sh \ git-merge-one-file.sh git-parse-remote.sh \ git-prune.sh git-pull.sh git-rebase.sh \ @@ -168,7 +168,7 @@ PROGRAMS = \ git-describe$X git-merge-tree$X git-blame$X git-imap-send$X BUILT_INS = git-log$X \ - git-count-objects$X git-push$X + git-count-objects$X git-diff$X git-push$X # what 'all' will build and 'install' will install, in gitexecdir ALL_PROGRAMS = $(PROGRAMS) $(SIMPLE_PROGRAMS) $(SCRIPTS) @@ -215,7 +215,7 @@ LIB_OBJS = \ $(DIFF_OBJS) BUILTIN_OBJS = \ - builtin-log.o builtin-help.o builtin-count.o builtin-push.o + builtin-log.o builtin-help.o builtin-count.o builtin-diff.o builtin-push.o GITLIBS = $(LIB_FILE) $(XDIFF_LIB) LIBS = $(GITLIBS) -lz |