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 .include "../../../got-version.mk"2 .include "../Makefile.inc"4 PROG= got-read-tree5 SRCS= got-read-tree.c error.c inflate.c object_parse.c \6 path.c privsep.c hash.c pollfd.c object_qid.c8 CPPFLAGS = -I${.CURDIR}/../../../include -I${.CURDIR}/../../../lib9 LDADD = -lutil -lz10 DPADD = ${LIBZ} ${LIBUTIL}11 LDSTATIC = ${STATIC}13 .PATH: ${.CURDIR}/../../../lib ${.CURDIR}/../../../libexec/got-read-tree15 .include <bsd.prog.mk>