Blame


1 257add31 2020-09-09 stsp .PATH:${.CURDIR}/../../lib
2 257add31 2020-09-09 stsp
3 257add31 2020-09-09 stsp .include "../../got-version.mk"
4 257add31 2020-09-09 stsp
5 257add31 2020-09-09 stsp PROG= got-read-gotconfig
6 257add31 2020-09-09 stsp SRCS= got-read-gotconfig.c error.c inflate.c object_parse.c \
7 13b2bc37 2022-10-23 stsp path.c privsep.c sha1.c parse.y pollfd.c
8 257add31 2020-09-09 stsp
9 257add31 2020-09-09 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib -I${.CURDIR}
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 257add31 2020-09-09 stsp LDADD = -lutil -lz
15 c0591751 2022-03-24 stsp .endif
16 c0591751 2022-03-24 stsp
17 257add31 2020-09-09 stsp DPADD = ${LIBZ} ${LIBUTIL}
18 257add31 2020-09-09 stsp
19 257add31 2020-09-09 stsp .include <bsd.prog.mk>