Blame


1 8a35f56c 2022-07-16 thomas .include "../../../got-version.mk"
2 8a35f56c 2022-07-16 thomas .include "../Makefile.inc"
3 8a35f56c 2022-07-16 thomas
4 8a35f56c 2022-07-16 thomas PROG= got-read-gotconfig
5 8a35f56c 2022-07-16 thomas SRCS= got-read-gotconfig.c error.c inflate.c object_parse.c \
6 232c0ac1 2023-04-22 thomas path.c privsep.c hash.c parse.y pollfd.c object_qid.c
7 8a35f56c 2022-07-16 thomas
8 8a35f56c 2022-07-16 thomas CPPFLAGS = -I${.CURDIR}/../../../include -I${.CURDIR}/../../../lib \
9 8a35f56c 2022-07-16 thomas -I${.CURDIR}/../../../libexec/got-read-gotconfig
10 18a742f3 2023-03-05 thomas YFLAGS =
11 8a35f56c 2022-07-16 thomas LDADD = -lutil -lz
12 8a35f56c 2022-07-16 thomas DPADD = ${LIBZ} ${LIBUTIL}
13 8a35f56c 2022-07-16 thomas LDSTATIC = ${STATIC}
14 8a35f56c 2022-07-16 thomas
15 8f3fcd24 2023-03-08 thomas CLEANFILES = parse.h
16 8f3fcd24 2023-03-08 thomas
17 8a35f56c 2022-07-16 thomas .PATH: ${.CURDIR}/../../../lib ${.CURDIR}/../../../libexec/got-read-gotconfig
18 8a35f56c 2022-07-16 thomas
19 8a35f56c 2022-07-16 thomas .include <bsd.prog.mk>