Blame


1 93658fb9 2020-03-18 stsp .PATH:${.CURDIR}/../../lib
2 93658fb9 2020-03-18 stsp
3 93658fb9 2020-03-18 stsp .include "../../got-version.mk"
4 93658fb9 2020-03-18 stsp
5 93658fb9 2020-03-18 stsp PROG= got-index-pack
6 93658fb9 2020-03-18 stsp SRCS= got-index-pack.c error.c inflate.c object_parse.c object_idset.c \
7 d0f1e2f1 2022-02-23 stsp delta_cache.c delta.c pack.c path.c privsep.c sha1.c ratelimit.c
8 93658fb9 2020-03-18 stsp
9 93658fb9 2020-03-18 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
10 c0591751 2022-03-24 stsp
11 c0591751 2022-03-24 stsp .if defined(PROFILE)
12 c0591751 2022-03-24 stsp LDADD = -lutil_p -lz_p
13 c0591751 2022-03-24 stsp .else
14 93658fb9 2020-03-18 stsp LDADD = -lutil -lz
15 c0591751 2022-03-24 stsp .endif
16 c0591751 2022-03-24 stsp
17 93658fb9 2020-03-18 stsp DPADD = ${LIBZ} ${LIBUTIL}
18 93658fb9 2020-03-18 stsp
19 93658fb9 2020-03-18 stsp .include <bsd.prog.mk>