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 2f43cd69 2023-04-14 stsp path.c privsep.c hash.c parse.y pollfd.c object_qid.c
8 257add31 2020-09-09 stsp
9 257add31 2020-09-09 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib -I${.CURDIR}
10 b43e02da 2023-03-04 op YFLAGS =
11 c0591751 2022-03-24 stsp
12 8cc1bc1f 2023-03-07 stsp CLEANFILES = parse.h
13 8cc1bc1f 2023-03-07 stsp
14 c0591751 2022-03-24 stsp .if defined(PROFILE)
15 c0591751 2022-03-24 stsp LDADD = -lutil_p -lz_p
16 c0591751 2022-03-24 stsp .else
17 257add31 2020-09-09 stsp LDADD = -lutil -lz
18 c0591751 2022-03-24 stsp .endif
19 c0591751 2022-03-24 stsp
20 257add31 2020-09-09 stsp DPADD = ${LIBZ} ${LIBUTIL}
21 257add31 2020-09-09 stsp
22 257add31 2020-09-09 stsp .include <bsd.prog.mk>