Blame


1 3185a744 2020-09-21 stsp .include "../../../got-version.mk"
2 3185a744 2020-09-21 stsp .include "../Makefile.inc"
3 3185a744 2020-09-21 stsp
4 3185a744 2020-09-21 stsp PROG= got-read-gotconfig
5 3185a744 2020-09-21 stsp SRCS= got-read-gotconfig.c error.c inflate.c object_parse.c \
6 13b2bc37 2022-10-23 stsp path.c privsep.c sha1.c parse.y pollfd.c
7 3185a744 2020-09-21 stsp
8 3185a744 2020-09-21 stsp CPPFLAGS = -I${.CURDIR}/../../../include -I${.CURDIR}/../../../lib \
9 3185a744 2020-09-21 stsp -I${.CURDIR}/../../../libexec/got-read-gotconfig
10 3185a744 2020-09-21 stsp LDADD = -lutil -lz
11 3185a744 2020-09-21 stsp DPADD = ${LIBZ} ${LIBUTIL}
12 3185a744 2020-09-21 stsp LDSTATIC = ${STATIC}
13 3185a744 2020-09-21 stsp
14 3185a744 2020-09-21 stsp .PATH: ${.CURDIR}/../../../lib ${.CURDIR}/../../../libexec/got-read-gotconfig
15 3185a744 2020-09-21 stsp
16 3185a744 2020-09-21 stsp .include <bsd.prog.mk>