Blame


1 8a35f56c 2022-07-16 thomas .include "../../../got-version.mk"
2 8a35f56c 2022-07-16 thomas .include "../Makefile.inc"
3 8a35f56c 2022-07-16 thomas
4 8a35f56c 2022-07-16 thomas PROG= got-read-object
5 8a35f56c 2022-07-16 thomas SRCS= got-read-object.c error.c inflate.c object_parse.c \
6 3efd8e31 2022-10-23 thomas path.c privsep.c sha1.c pollfd.c
7 8a35f56c 2022-07-16 thomas
8 8a35f56c 2022-07-16 thomas CPPFLAGS = -I${.CURDIR}/../../../include -I${.CURDIR}/../../../lib
9 8a35f56c 2022-07-16 thomas LDADD = -lutil -lz
10 8a35f56c 2022-07-16 thomas DPADD = ${LIBZ} ${LIBUTIL}
11 8a35f56c 2022-07-16 thomas LDSTATIC = ${STATIC}
12 8a35f56c 2022-07-16 thomas
13 8a35f56c 2022-07-16 thomas .PATH: ${.CURDIR}/../../../lib ${.CURDIR}/../../../libexec/got-read-object
14 8a35f56c 2022-07-16 thomas
15 8a35f56c 2022-07-16 thomas .include <bsd.prog.mk>