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-read-gitconfig6 SRCS= got-read-gitconfig.c error.c inflate.c object_parse.c \7 path.c privsep.c hash.c gitconfig.c pollfd.c object_qid.c9 CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib11 .if defined(PROFILE)12 LDADD = -lutil_p -lz_p13 .else14 LDADD = -lutil -lz15 .endif17 DPADD = ${LIBZ} ${LIBUTIL}19 .include <bsd.prog.mk>