Blame


1 e9ce266e 2022-03-07 op .PATH:${.CURDIR}/../../lib
2 e9ce266e 2022-03-07 op
3 e9ce266e 2022-03-07 op .include "../../got-version.mk"
4 e9ce266e 2022-03-07 op
5 e9ce266e 2022-03-07 op PROG= got-read-patch
6 e9ce266e 2022-03-07 op SRCS= got-read-patch.c error.c inflate.c object_parse.c \
7 2f43cd69 2023-04-14 stsp path.c privsep.c hash.c pollfd.c object_qid.c
8 e9ce266e 2022-03-07 op
9 e9ce266e 2022-03-07 op 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 c0591751 2022-03-24 stsp LDADD = -lutil -lz
15 c0591751 2022-03-24 stsp .endif
16 c0591751 2022-03-24 stsp
17 e9ce266e 2022-03-07 op DPADD = ${LIBZ} ${LIBUTIL}
18 e9ce266e 2022-03-07 op
19 e9ce266e 2022-03-07 op .include <bsd.prog.mk>