Blame


1 876c234b 2018-09-10 stsp .PATH:${.CURDIR}/../../lib
2 876c234b 2018-09-10 stsp
3 53ccebc2 2019-07-30 stsp .include "../../got-version.mk"
4 53ccebc2 2019-07-30 stsp
5 876c234b 2018-09-10 stsp PROG= got-read-pack
6 c59b3346 2018-09-11 stsp SRCS= got-read-pack.c delta.c error.c inflate.c object_cache.c \
7 f054b67a 2018-11-05 stsp object_idset.c object_parse.c opentemp.c pack.c path.c \
8 2f43cd69 2023-04-14 stsp privsep.c hash.c delta_cache.c pollfd.c object_qid.c
9 876c234b 2018-09-10 stsp
10 876c234b 2018-09-10 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
11 c0591751 2022-03-24 stsp
12 c0591751 2022-03-24 stsp .if defined(PROFILE)
13 c0591751 2022-03-24 stsp LDADD = -lutil_p -lz_p
14 c0591751 2022-03-24 stsp .else
15 876c234b 2018-09-10 stsp LDADD = -lutil -lz
16 c0591751 2022-03-24 stsp .endif
17 c0591751 2022-03-24 stsp
18 876c234b 2018-09-10 stsp DPADD = ${LIBZ} ${LIBUTIL}
19 876c234b 2018-09-10 stsp
20 876c234b 2018-09-10 stsp .include <bsd.prog.mk>