Blame


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