Blame


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