diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-01 23:05:39 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-01 23:06:06 -0700 |
commit | 468eb79ed453017151c1230057986a7a79264395 (patch) | |
tree | 618dcf56a7e0a523578451956fe454c6af13ef4f /Makefile | |
parent | c74320872b445104fe5c265e60785d9d26d94cc5 (diff) | |
download | git-468eb79ed453017151c1230057986a7a79264395.tar.gz git-468eb79ed453017151c1230057986a7a79264395.tar.xz |
builtin-count-objects: make it official.
Remove the shell-script version, make the hardlink from the git
binary, and update the documentation to describe a new option.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 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-count-objects.sh git-diff.sh git-fetch.sh \ + git-diff.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-push.sh git-rebase.sh \ @@ -167,7 +167,8 @@ PROGRAMS = \ git-name-rev$X git-pack-redundant$X git-repo-config$X git-var$X \ git-describe$X git-merge-tree$X git-blame$X git-imap-send$X -BUILT_INS = git-log$X +BUILT_INS = git-log$X \ + git-count-objects$X # what 'all' will build and 'install' will install, in gitexecdir ALL_PROGRAMS = $(PROGRAMS) $(SIMPLE_PROGRAMS) $(SCRIPTS) |