Blame


1 069bbb86 2022-03-07 thomas .PATH:${.CURDIR}/../../lib
2 069bbb86 2022-03-07 thomas
3 069bbb86 2022-03-07 thomas .include "../../got-version.mk"
4 069bbb86 2022-03-07 thomas
5 069bbb86 2022-03-07 thomas PROG= got-read-patch
6 069bbb86 2022-03-07 thomas SRCS= got-read-patch.c error.c inflate.c object_parse.c \
7 069bbb86 2022-03-07 thomas path.c privsep.c sha1.c
8 069bbb86 2022-03-07 thomas
9 069bbb86 2022-03-07 thomas CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
10 069bbb86 2022-03-07 thomas LDADD = -lz -lutil
11 069bbb86 2022-03-07 thomas DPADD = ${LIBZ} ${LIBUTIL}
12 069bbb86 2022-03-07 thomas
13 069bbb86 2022-03-07 thomas .include <bsd.prog.mk>