### Default paths and settings ###
# SSHD_SYSCONF_DIR="/etc/ssh"
# SSHD_CONF="/etc/ssh/sshd_config"
# SSHD_BINARY="/usr/sbin/sshd"
# SSH_KEYGEN_BINARY="/usr/bin/ssh-keygen"
# SSHD_PIDFILE="/var/run/sshd.pid"
# SECURE_LOG="/var/log/secure"
# PROC_PATH="/proc"


### Configure, make, make install for Debian and derived dists ###
#./configure --prefix=/usr --sysconfdir=/etc \
#--localstatedir=/var --sbindir=/usr/sbin \
#SYSINIT_START_CMD="update-rc.d -f sshd defaults" \
#SYSINIT_STOP_CMD="update-rc.d -f sshd remove" &&
#make &&
#make install

### Configure, make, make install for Fedora ###
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --sbindir=/usr/sbin \
SYSINIT_START_CMD="chkconfig sshd on" \
SYSINIT_STOP_CMD="chkconfig sshd off" &&
make &&
make install
