Blame


1 ad242220 2018-09-08 stsp .PATH:${.CURDIR}/../../lib
2 ad242220 2018-09-08 stsp
3 53ccebc2 2019-07-30 stsp .include "../../got-version.mk"
4 53ccebc2 2019-07-30 stsp
5 ad242220 2018-09-08 stsp PROG= got-read-object
6 2256993b 2019-07-15 stsp SRCS= got-read-object.c error.c inflate.c object_parse.c \
7 f5d3d7af 2019-02-05 stsp path.c privsep.c sha1.c
8 ad242220 2018-09-08 stsp
9 ad242220 2018-09-08 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
10 ad242220 2018-09-08 stsp LDADD = -lutil -lz
11 ad242220 2018-09-08 stsp DPADD = ${LIBZ} ${LIBUTIL}
12 ad242220 2018-09-08 stsp
13 ad242220 2018-09-08 stsp .include <bsd.prog.mk>