Blame


1 94a3f4e9 2024-03-30 thomas .PATH:${.CURDIR}/../..
2 94a3f4e9 2024-03-30 thomas .PATH:${.CURDIR}/../../../lib
3 94a3f4e9 2024-03-30 thomas
4 94a3f4e9 2024-03-30 thomas .include "../../../got-version.mk"
5 94a3f4e9 2024-03-30 thomas
6 94a3f4e9 2024-03-30 thomas PROG= got-notify-http
7 94a3f4e9 2024-03-30 thomas SRCS= got-notify-http.c bufio.c opentemp.c pollfd.c error.c hash.c
8 94a3f4e9 2024-03-30 thomas
9 94a3f4e9 2024-03-30 thomas CPPFLAGS= -I${.CURDIR}/../../../include -I${.CURDIR}/../../../lib
10 94a3f4e9 2024-03-30 thomas
11 94a3f4e9 2024-03-30 thomas DPADD= ${LIBTLS}
12 94a3f4e9 2024-03-30 thomas LDADD= -ltls
13 94a3f4e9 2024-03-30 thomas
14 94a3f4e9 2024-03-30 thomas .include <bsd.prog.mk>