Blob
- Date:
- Message:
- remove dependency of gitwrapper, gotctl, and gotsh on object_parse.c Move some functions from object_parse.c into hash.c. These functions either require hash.c code anyway or contain object ID implementation internals. Add a new file object_qid.c, for got_object_id_queue and got_object_qid. This new file must be linked to virtually every program.
- Actions:
- History | Blame | Raw File
1 .PATH:${.CURDIR}/../../lib3 PROG = delta_test4 SRCS = delta.c error.c opentemp.c path.c inflate.c hash.c delta_test.c \5 pollfd.c object_parse.c object_qid.c7 CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib8 LDADD = -lz10 NOMAN = yes12 run-regress-delta_test:13 ${.OBJDIR}/delta_test -q15 .include <bsd.regress.mk>