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 .include "../../got-version.mk"5 PROG= got-send-pack6 SRCS= got-send-pack.c error.c inflate.c object_parse.c \7 path.c privsep.c hash.c pkt.c gitproto.c ratelimit.c \8 pollfd.c reference_parse.c object_qid.c10 CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib12 .if defined(PROFILE)13 LDADD = -lutil_p -lz_p14 .else15 LDADD = -lutil -lz16 .endif18 DPADD = ${LIBZ} ${LIBUTIL}20 .include <bsd.prog.mk>