diff options
author | 2016-12-21 20:55:42 +0000 | |
---|---|---|
committer | 2016-12-21 20:55:42 +0000 | |
commit | c9ea9614449222c0d70e2606fb2e741707adfa97 (patch) | |
tree | deec931e47a0ea598a095f5fca6e404702537504 | |
parent | Eliminate another 'calculated, not used' warning by nuking a spurious (diff) | |
download | wireguard-openbsd-c9ea9614449222c0d70e2606fb2e741707adfa97.tar.xz wireguard-openbsd-c9ea9614449222c0d70e2606fb2e741707adfa97.zip |
stub for building HTTPS-enabled client
-rw-r--r-- | distrib/special/ftp-ssl/Makefile | 12 |
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> |