Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2005-07-15 04:55:09 +0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-15 21:00:35 +0400
commitaed022ab4ca1055e1c962b73e14dbf41380f84a9 (patch)
treebf985ca03841840bc8ea3fc6620f192a8c83c833 /Makefile
parent7a868a84143c0bad2dce3fd0337320524436da27 (diff)
[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