diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-29 20:50:15 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-29 20:50:15 -0700 |
commit | f3a3214e83be2905c57eff5d9035d169cae4644e (patch) | |
tree | d883e338e32ba1b07e31df7b2b9da44157d23210 /Makefile | |
parent | Start of "git-send-pack", the local part of sending off a pack (diff) | |
download | tgif-f3a3214e83be2905c57eff5d9035d169cae4644e.tar.xz |
Make send/receive-pack be closer to doing something interesting
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -9,7 +9,7 @@ # BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely randomly # break unless your underlying filesystem supports those sub-second times # (my ext3 doesn't). -COPTS=-O2 +COPTS= CFLAGS=-g $(COPTS) -Wall prefix=$(HOME) @@ -46,9 +46,10 @@ install: $(PROG) $(SCRIPTS) LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \ tag.o date.o index.o diff-delta.o patch-delta.o entry.o \ - epoch.o refs.o csum-file.o verify_pack.o + epoch.o refs.o csum-file.o verify_pack.o pkt-line.o LIB_FILE=libgit.a -LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h pack.h +LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h \ + pack.h pkt-line.h LIB_H += strbuf.h LIB_OBJS += strbuf.o |