]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - secure/usr.sbin/sshd/Makefile
MFC r305065: Add refactored blacklist support to sshd
[FreeBSD/FreeBSD.git] / secure / usr.sbin / sshd / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 PROG=   sshd
6 SRCS=   sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
7         audit.c audit-bsm.c audit-linux.c platform.c \
8         sshpty.c sshlogin.c servconf.c serverloop.c \
9         auth.c auth1.c auth2.c auth-options.c session.c \
10         auth-chall.c auth2-chall.c groupaccess.c \
11         auth-skey.c auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c \
12         auth2-none.c auth2-passwd.c auth2-pubkey.c \
13         monitor_mm.c monitor.c monitor_wrap.c auth-krb5.c \
14         auth2-gss.c gss-serv.c gss-serv-krb5.c \
15         loginrec.c auth-pam.c auth-shadow.c auth-sia.c md5crypt.c \
16         sftp-server.c sftp-common.c \
17         sandbox-null.c sandbox-rlimit.c sandbox-systrace.c sandbox-darwin.c \
18         sandbox-seccomp-filter.c sandbox-capsicum.c sandbox-pledge.c \
19         sandbox-solaris.c
20 PACKAGE=        ssh
21
22 # gss-genr.c really belongs in libssh; see src/secure/lib/libssh/Makefile
23 SRCS+=  gss-genr.c
24
25 MAN=    sshd.8 sshd_config.5
26 CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
27 SRCS+=  ssh_namespace.h
28
29 # pam should always happen before ssh here for static linking
30 LIBADD= pam ssh util wrap
31
32 .if ${MK_LDNS} != "no"
33 CFLAGS+=        -DHAVE_LDNS=1
34 #DPADD+=        ${LIBLDNS}
35 #LDADD+=        -lldns
36 .endif
37
38 .if ${MK_AUDIT} != "no"
39 CFLAGS+= -DUSE_BSM_AUDIT -DHAVE_GETAUDIT_ADDR
40 LIBADD+=        bsm
41 .endif
42
43 .if ${MK_BLACKLIST_SUPPORT} != "no"
44 CFLAGS+= -DUSE_BLACKLIST -I${SRCTOP}/contrib/blacklist/include
45 SRCS+=  blacklist.c
46 LIBADD+= blacklist
47 LDFLAGS+=-L${LIBBLACKLISTDIR}
48 .endif
49
50 .if ${MK_KERBEROS_SUPPORT} != "no"
51 CFLAGS+= -include krb5_config.h
52 SRCS+=  krb5_config.h
53 LIBADD+=        gssapi_krb5 gssapi krb5
54 .endif
55
56 LIBADD+=        crypto
57
58 .if defined(LOCALBASE)
59 CFLAGS+= -DXAUTH_PATH=\"${LOCALBASE}/bin/xauth\"
60 .endif
61
62 .include <bsd.prog.mk>
63
64 .PATH:  ${SSHDIR}