aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd/smtp/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'smtpd/smtp/Makefile')
-rw-r--r--smtpd/smtp/Makefile24
1 files changed, 0 insertions, 24 deletions
diff --git a/smtpd/smtp/Makefile b/smtpd/smtp/Makefile
deleted file mode 100644
index 380e3ad6..00000000
--- a/smtpd/smtp/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-# $OpenBSD: Makefile,v 1.1 2018/04/26 13:57:13 eric Exp $
-
-.PATH: ${.CURDIR}/..
-
-PROG= smtp
-
-BINDIR= /usr/bin
-MAN= smtp.1
-
-SRCS+= iobuf.c
-SRCS+= ioev.c
-SRCS+= log.c
-SRCS+= smtp_client.c
-SRCS+= smtpc.c
-SRCS+= ssl.c
-SRCS+= ssl_smtpd.c
-SRCS+= ssl_verify.c
-
-CPPFLAGS+= -DIO_TLS
-
-LDADD+= -levent -lutil -lssl -lcrypto -lm -lz
-DPADD+= ${LIBEVENT} ${LIBUTIL} ${LIBSSL} ${LIBCRYPTO} ${LIBM} ${LIBZ}
-
-.include <bsd.prog.mk>