Blame


1 28714985 2018-11-17 stsp .PATH:${.CURDIR}/../../lib
2 28714985 2018-11-17 stsp
3 53ccebc2 2019-07-30 stsp .include "../../got-version.mk"
4 53ccebc2 2019-07-30 stsp
5 28714985 2018-11-17 stsp PROG= got-read-tag
6 2256993b 2019-07-15 stsp SRCS= got-read-tag.c error.c inflate.c object_parse.c \
7 4123af3c 2023-02-12 op path.c privsep.c hash.c pollfd.c
8 28714985 2018-11-17 stsp
9 28714985 2018-11-17 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 28714985 2018-11-17 stsp LDADD = -lutil -lz
15 c0591751 2022-03-24 stsp .endif
16 c0591751 2022-03-24 stsp
17 28714985 2018-11-17 stsp DPADD = ${LIBZ} ${LIBUTIL}
18 28714985 2018-11-17 stsp
19 28714985 2018-11-17 stsp .include <bsd.prog.mk>