diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-14 01:37:23 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-14 01:37:23 -0700 |
commit | 33deb63a36f523c513cf29598d9c05fe78a23cac (patch) | |
tree | 298e5d544d67bcc11e95aa6b04f1069a9cd959e6 /Makefile | |
parent | 458754a9fe2c2e889e38d1f4f53d5d457eba6faa (diff) | |
download | git-33deb63a36f523c513cf29598d9c05fe78a23cac.tar.gz |
Add "merge-tree" helper program. Maybe it's retarded, maybe it's helpful.
It only works one directory level at a time, so lookout..
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -14,7 +14,7 @@ CC=gcc PROG= update-cache show-diff init-db write-tree read-tree commit-tree \ cat-file fsck-cache checkout-cache diff-tree rev-tree show-files \ - check-files ls-tree + check-files ls-tree merge-tree all: $(PROG) @@ -64,6 +64,9 @@ check-files: check-files.o read-cache.o ls-tree: ls-tree.o read-cache.o $(CC) $(CFLAGS) -o ls-tree ls-tree.o read-cache.o $(LIBS) +merge-tree: merge-tree.o read-cache.o + $(CC) $(CFLAGS) -o merge-tree merge-tree.o read-cache.o $(LIBS) + read-cache.o: cache.h show-diff.o: cache.h |