aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Barkalow <barkalow@iabervon.org>2005-06-06 16:31:29 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-06 17:09:45 -0700
commit95fc75129acf14d980bdd56b9b2ee74190f81d91 (patch)
treed3a6988ffe8b9ae0b554ddb4485ffb0f1cac0dc7 /Makefile
parent451322512f2f72fe07461a8aeae0df4cfce7fda1 (diff)
downloadgit-95fc75129acf14d980bdd56b9b2ee74190f81d91.tar.gz
[PATCH] Operations on refs
This patch adds code to read a hash out of a specified file under {GIT_DIR}/refs/, and to write such files atomically and optionally with an compare and lock. Signed-off-by: Daniel Barkalow <barkalow@iabervon.org> 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 5d5c856a71..50eb01c1ac 100644
--- a/Makefile
+++ b/Makefile
@@ -40,7 +40,8 @@ install: $(PROG) $(SCRIPTS)
$(INSTALL) $(PROG) $(SCRIPTS) $(dest)$(bin)
LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
- tag.o delta.o date.o index.o diff-delta.o patch-delta.o entry.o epoch.o
+ tag.o delta.o date.o index.o diff-delta.o patch-delta.o entry.o \
+ epoch.o refs.o
LIB_FILE=libgit.a
LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h