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 53bf0b54 2023-02-23 op delta_cache.c delta.c pack.c path.c privsep.c hash.c ratelimit.c \
8 2f43cd69 2023-04-14 stsp pack_index.c pollfd.c object_qid.c
9 93658fb9 2020-03-18 stsp
10 93658fb9 2020-03-18 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
11 c0591751 2022-03-24 stsp
12 c0591751 2022-03-24 stsp .if defined(PROFILE)
13 c0591751 2022-03-24 stsp LDADD = -lutil_p -lz_p
14 c0591751 2022-03-24 stsp .else
15 93658fb9 2020-03-18 stsp LDADD = -lutil -lz
16 c0591751 2022-03-24 stsp .endif
17 c0591751 2022-03-24 stsp
18 93658fb9 2020-03-18 stsp DPADD = ${LIBZ} ${LIBUTIL}
19 93658fb9 2020-03-18 stsp
20 93658fb9 2020-03-18 stsp .include <bsd.prog.mk>