Blame


1 a596b957 2022-07-14 tracey .include "../../../got-version.mk"
2 a596b957 2022-07-14 tracey .include "../Makefile.inc"
3 a596b957 2022-07-14 tracey
4 a596b957 2022-07-14 tracey PROG= got-read-gotconfig
5 a596b957 2022-07-14 tracey SRCS= got-read-gotconfig.c error.c inflate.c object_parse.c \
6 53bf0b54 2023-02-23 op path.c privsep.c hash.c parse.y pollfd.c
7 a596b957 2022-07-14 tracey
8 a596b957 2022-07-14 tracey CPPFLAGS = -I${.CURDIR}/../../../include -I${.CURDIR}/../../../lib \
9 a596b957 2022-07-14 tracey -I${.CURDIR}/../../../libexec/got-read-gotconfig
10 b43e02da 2023-03-04 op YFLAGS =
11 a596b957 2022-07-14 tracey LDADD = -lutil -lz
12 a596b957 2022-07-14 tracey DPADD = ${LIBZ} ${LIBUTIL}
13 a596b957 2022-07-14 tracey LDSTATIC = ${STATIC}
14 a596b957 2022-07-14 tracey
15 8cc1bc1f 2023-03-07 stsp CLEANFILES = parse.h
16 8cc1bc1f 2023-03-07 stsp
17 a596b957 2022-07-14 tracey .PATH: ${.CURDIR}/../../../lib ${.CURDIR}/../../../libexec/got-read-gotconfig
18 a596b957 2022-07-14 tracey
19 a596b957 2022-07-14 tracey .include <bsd.prog.mk>