Blame


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