summaryrefslogtreecommitdiff
path: root/secure/libexec
diff options
context:
space:
mode:
Diffstat (limited to 'secure/libexec')
-rw-r--r--secure/libexec/Makefile10
-rw-r--r--secure/libexec/Makefile.inc5
-rw-r--r--secure/libexec/sftp-server/Makefile13
-rw-r--r--secure/libexec/ssh-keysign/Makefile16
-rw-r--r--secure/libexec/telnetd/Makefile26
5 files changed, 0 insertions, 70 deletions
diff --git a/secure/libexec/Makefile b/secure/libexec/Makefile
deleted file mode 100644
index dba033137bbc..000000000000
--- a/secure/libexec/Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-# $FreeBSD$
-
-.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4) && !defined(MAKE_KERBEROS5) && !defined(NO_OPENSSL)
-SUBDIR= telnetd
-.endif
-.if !defined(NO_OPENSSL) && !defined(NO_OPENSSH)
-SUBDIR+=sftp-server ssh-keysign
-.endif
-
-.include <bsd.subdir.mk>
diff --git a/secure/libexec/Makefile.inc b/secure/libexec/Makefile.inc
deleted file mode 100644
index 2b094361f75f..000000000000
--- a/secure/libexec/Makefile.inc
+++ /dev/null
@@ -1,5 +0,0 @@
-# $FreeBSD$
-
-BINDIR?= /usr/libexec
-
-.include "${.CURDIR}/../../Makefile.inc"
diff --git a/secure/libexec/sftp-server/Makefile b/secure/libexec/sftp-server/Makefile
deleted file mode 100644
index 1b046adbd9e0..000000000000
--- a/secure/libexec/sftp-server/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-# $FreeBSD$
-
-PROG= sftp-server
-SRCS= sftp-server.c sftp-common.c
-MAN= sftp-server.8
-CFLAGS+=-I${SSHDIR}
-
-DPADD+= ${LIBSSH} ${LIBCRYPTO}
-LDADD+= -lssh -lcrypto
-
-.include <bsd.prog.mk>
-
-.PATH: ${SSHDIR}
diff --git a/secure/libexec/ssh-keysign/Makefile b/secure/libexec/ssh-keysign/Makefile
deleted file mode 100644
index 1f74eacf5f45..000000000000
--- a/secure/libexec/ssh-keysign/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-# $FreeBSD$
-
-PROG= ssh-keysign
-SRCS= ssh-keysign.c msg.c readconf.c
-MAN= ssh-keysign.8
-CFLAGS+=-I${SSHDIR}
-.if defined(ENABLE_SUID_SSH)
-BINMODE=4511
-.endif
-
-DPADD= ${LIBSSH} ${LIBCRYPTO} ${LIBZ}
-LDADD= -lssh -lcrypto -lz
-
-.include <bsd.prog.mk>
-
-.PATH: ${SSHDIR}
diff --git a/secure/libexec/telnetd/Makefile b/secure/libexec/telnetd/Makefile
deleted file mode 100644
index 07378fd6d137..000000000000
--- a/secure/libexec/telnetd/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-# $FreeBSD$
-
-# Do not define -DKLUDGELINEMODE, as it does not interact well with many
-# telnet implementations.
-
-PROG= telnetd
-MAN= telnetd.8
-
-SRCS= global.c slc.c state.c sys_term.c telnetd.c \
- termstat.c utility.c authenc.c
-
-CFLAGS+= -DLINEMODE -DUSE_TERMIO -DDIAGNOSTICS -DOLD_ENVIRON \
- -DENV_HACK -DAUTHENTICATION -DENCRYPTION \
- -I${TELNETDIR} -DINET6
-
-WARNS?= 2
-WFORMAT?= 0
-
-DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} ${LIBMP} ${LIBCRYPTO} \
- ${LIBCRYPT} ${LIBPAM}
-LDADD= -lutil -ltermcap ${LIBTELNET} -lmp -lcrypto \
- -lcrypt ${MINUSLPAM}
-
-.include <bsd.prog.mk>
-
-.PATH: ${TELNETDIR}/telnetd