Blame


1 09876a9d 2024-04-25 thomas.ad .PATH:${.CURDIR}/../../lib
2 09876a9d 2024-04-25 thomas.ad
3 09876a9d 2024-04-25 thomas.ad .include "../../got-version.mk"
4 09876a9d 2024-04-25 thomas.ad
5 09876a9d 2024-04-25 thomas.ad PROG= got-fetch-http
6 452122e2 2024-04-25 thomas.ad SRCS= got-fetch-http.c bufio.c hash.c error.c inflate.c pollfd.c
7 09876a9d 2024-04-25 thomas.ad
8 09876a9d 2024-04-25 thomas.ad CPPFLAGS= -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
9 09876a9d 2024-04-25 thomas.ad
10 09876a9d 2024-04-25 thomas.ad .if defined(PROFILE)
11 09876a9d 2024-04-25 thomas.ad LDADD= -lutil_p -lz_p -ltls_p
12 09876a9d 2024-04-25 thomas.ad .else
13 09876a9d 2024-04-25 thomas.ad LDADD= -lutil -lz -ltls
14 09876a9d 2024-04-25 thomas.ad .endif
15 09876a9d 2024-04-25 thomas.ad
16 09876a9d 2024-04-25 thomas.ad DPADD= ${LIBZ} ${LIBUTIL} ${LIBTLS}
17 09876a9d 2024-04-25 thomas.ad
18 09876a9d 2024-04-25 thomas.ad .include <bsd.prog.mk>