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 4123af3c 2023-02-12 op path.c privsep.c hash.c pkt.c gitproto.c ratelimit.c \
8 6242c45b 2022-11-14 op pollfd.c reference_parse.c
9 f8a36e22 2021-08-26 stsp
10 f8a36e22 2021-08-26 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 f8a36e22 2021-08-26 stsp LDADD = -lutil -lz
16 c0591751 2022-03-24 stsp .endif
17 c0591751 2022-03-24 stsp
18 f8a36e22 2021-08-26 stsp DPADD = ${LIBZ} ${LIBUTIL}
19 f8a36e22 2021-08-26 stsp
20 f8a36e22 2021-08-26 stsp .include <bsd.prog.mk>