Blame


1 f8a36e22 2021-08-26 stsp .PATH:${.CURDIR}/../../lib
2 f8a36e22 2021-08-26 stsp
3 f8a36e22 2021-08-26 stsp .include "../../got-version.mk"
4 f8a36e22 2021-08-26 stsp
5 f8a36e22 2021-08-26 stsp PROG= got-send-pack
6 f8a36e22 2021-08-26 stsp SRCS= got-send-pack.c error.c inflate.c object_parse.c \
7 bed00385 2022-02-23 stsp path.c privsep.c sha1.c pkt.c gitproto.c ratelimit.c
8 f8a36e22 2021-08-26 stsp
9 f8a36e22 2021-08-26 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 f8a36e22 2021-08-26 stsp LDADD = -lutil -lz
15 c0591751 2022-03-24 stsp .endif
16 c0591751 2022-03-24 stsp
17 f8a36e22 2021-08-26 stsp DPADD = ${LIBZ} ${LIBUTIL}
18 f8a36e22 2021-08-26 stsp
19 f8a36e22 2021-08-26 stsp .include <bsd.prog.mk>