mirror of
https://git.freebsd.org/ports.git
synced 2025-05-13 15:51:51 -04:00
12 lines
258 B
Text
12 lines
258 B
Text
PROG = http_post
|
|
SRCS = http_post.c
|
|
|
|
.ifndef NO_OPENSSL
|
|
CFLAGS += -DUSE_SSL -I${OPENSSLBASE}/include ${OPENSSL_CFLAGS}
|
|
LDFLAGS += -L${OPENSSLBASE}/lib -lssl -lcrypto
|
|
.endif
|
|
|
|
BINDIR = ${PREFIX}/bin
|
|
MANDIR = ${PREFIX}/share/man/man
|
|
|
|
.include <bsd.prog.mk>
|