aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLukas Sandström <lukass@etek.chalmers.se>2006-05-18 14:15:55 +0200
committerJunio C Hamano <junkio@cox.net>2006-05-18 15:51:38 -0700
commit9370bae2cef351617272aa142fbe4ce039833d13 (patch)
tree7265a2b5e3fbcdee3a5c45b0b4469016ad5891d6 /Makefile
parent5fb61b8dcfdf7bcec0793c071813e255d1803859 (diff)
downloadgit-9370bae2cef351617272aa142fbe4ce039833d13.tar.gz
git-9370bae2cef351617272aa142fbe4ce039833d13.tar.xz
Make git-check-format-ref a builtin.
Signed-off-by: Lukas Sandström <lukass@etek.chalmers.se> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6efc8e027..2149fb8ce 100644
--- a/Makefile
+++ b/Makefile
@@ -164,13 +164,13 @@ PROGRAMS = \
git-ssh-upload$X git-tar-tree$X git-unpack-file$X \
git-unpack-objects$X git-update-index$X git-update-server-info$X \
git-upload-pack$X git-verify-pack$X git-write-tree$X \
- git-update-ref$X git-symbolic-ref$X git-check-ref-format$X \
+ git-update-ref$X git-symbolic-ref$X \
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 git-whatchanged$X git-show$X \
git-count-objects$X git-diff$X git-push$X \
- git-grep$X git-rev-list$X
+ git-grep$X git-rev-list$X git-check-ref-format$X
# what 'all' will build and 'install' will install, in gitexecdir
ALL_PROGRAMS = $(PROGRAMS) $(SIMPLE_PROGRAMS) $(SCRIPTS)
@@ -218,7 +218,7 @@ LIB_OBJS = \
BUILTIN_OBJS = \
builtin-log.o builtin-help.o builtin-count.o builtin-diff.o builtin-push.o \
- builtin-grep.o builtin-rev-list.o
+ builtin-grep.o builtin-rev-list.o builtin-check-ref-format.o
GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
LIBS = $(GITLIBS) -lz