Blame


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