diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-18 13:04:43 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-18 13:04:43 -0700 |
commit | 0fcfd160b0495c0881e142c546c4418b8cea7e93 (patch) | |
tree | 21bdf6702f0dfe75fc7caa3882da7bb34b0bc4bf /Makefile | |
parent | 0a02ce72d9ab78d061b2cc919bc15e36fe620ddc (diff) | |
download | git-0fcfd160b0495c0881e142c546c4418b8cea7e93.tar.gz git-0fcfd160b0495c0881e142c546c4418b8cea7e93.tar.xz |
Split up read-cache.c into more logical clumps.
Do the usage and error reporting in "usage.c", and the sha1 file
accesses in "sha1_file.c".
Small, nice, easily separated parts. Good.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ all: $(PROG) install: $(PROG) install $(PROG) $(HOME)/bin/ -LIB_OBJS=read-cache.o object.o commit.o tree.o blob.o +LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o LIB_FILE=libgit.a $(LIB_FILE): $(LIB_OBJS) |