aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2005-07-14 18:55:09 -0600
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-15 10:00:35 -0700
commitaed022ab4ca1055e1c962b73e14dbf41380f84a9 (patch)
treebf985ca03841840bc8ea3fc6620f192a8c83c833 /Makefile
parent7a868a84143c0bad2dce3fd0337320524436da27 (diff)
downloadgit-aed022ab4ca1055e1c962b73e14dbf41380f84a9.tar.gz
[PATCH] Add git-var a tool for reading interesting git variables.
Sharing code between shell scripts and C is a challenge. The program git-var allows us to have a set of named values that a shell script can interrogate and a normal C program can simply call the functions that compute them. Allowing sharing when computing plain test values. Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 21dd582255..4bc3665f2d 100644
--- a/Makefile
+++ b/Makefile
@@ -48,7 +48,7 @@ PROG= git-update-cache git-diff-files git-init-db git-write-tree \
git-diff-stages git-rev-parse git-patch-id git-pack-objects \
git-unpack-objects git-verify-pack git-receive-pack git-send-pack \
git-prune-packed git-fetch-pack git-upload-pack git-clone-pack \
- git-show-index git-daemon
+ git-show-index git-daemon git-var
all: $(PROG)
@@ -148,6 +148,7 @@ git-receive-pack: receive-pack.c
git-send-pack: send-pack.c
git-prune-packed: prune-packed.c
git-fetch-pack: fetch-pack.c
+git-var: var.c
git-http-pull: LIBS += -lcurl
git-rev-list: LIBS += -lssl