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-pack
5 8a35f56c 2022-07-16 thomas SRCS= got-read-pack.c delta.c error.c inflate.c object_cache.c \
6 8a35f56c 2022-07-16 thomas object_idset.c object_parse.c opentemp.c pack.c path.c \
7 be288a59 2023-02-23 thomas privsep.c hash.c delta_cache.c pollfd.c
8 8a35f56c 2022-07-16 thomas
9 8a35f56c 2022-07-16 thomas CPPFLAGS = -I${.CURDIR}/../../../include -I${.CURDIR}/../../../lib
10 8a35f56c 2022-07-16 thomas LDADD = -lutil -lz
11 8a35f56c 2022-07-16 thomas DPADD = ${LIBZ} ${LIBUTIL}
12 8a35f56c 2022-07-16 thomas LDSTATIC = ${STATIC}
13 8a35f56c 2022-07-16 thomas
14 8a35f56c 2022-07-16 thomas .PATH: ${.CURDIR}/../../../lib ${.CURDIR}/../../../libexec/got-read-pack
15 8a35f56c 2022-07-16 thomas
16 8a35f56c 2022-07-16 thomas .include <bsd.prog.mk>