summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2016-12-21 20:55:42 +0000
committerderaadt <deraadt@openbsd.org>2016-12-21 20:55:42 +0000
commitc9ea9614449222c0d70e2606fb2e741707adfa97 (patch)
treedeec931e47a0ea598a095f5fca6e404702537504
parentEliminate another 'calculated, not used' warning by nuking a spurious (diff)
downloadwireguard-openbsd-c9ea9614449222c0d70e2606fb2e741707adfa97.tar.xz
wireguard-openbsd-c9ea9614449222c0d70e2606fb2e741707adfa97.zip
stub for building HTTPS-enabled client
-rw-r--r--distrib/special/ftp-ssl/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/distrib/special/ftp-ssl/Makefile b/distrib/special/ftp-ssl/Makefile
new file mode 100644
index 00000000000..abadbec9044
--- /dev/null
+++ b/distrib/special/ftp-ssl/Makefile
@@ -0,0 +1,12 @@
+# $OpenBSD: Makefile,v 1.1 2016/12/21 20:55:42 deraadt Exp $
+
+CFLAGS+=-DSMALL
+
+PROG= ftp
+SRCS= fetch.c ftp.c main.c small.c util.c cookie.c
+.PATH: ${.CURDIR}/../../../usr.bin/ftp
+
+LDADD+= -lutil -ltls -lssl -lcrypto
+DPADD+= ${LIBUTIL} ${LIBTLS} ${LIBSSL} ${LIBCRYPTO}
+
+.include <bsd.prog.mk>