]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - secure/usr.bin/scp/Makefile
Move ssh into a dedicated package
[FreeBSD/FreeBSD.git] / secure / usr.bin / scp / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 PROG=   scp
6 SRCS=   scp.c
7 CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
8 PACKAGE=        ssh
9
10 .if !defined(NO_SHARED)
11 # required when linking with a dynamic libssh
12 SRCS+=  roaming_dummy.c
13 .endif
14
15 LIBADD= ssh
16
17 .if ${MK_LDNS} != "no"
18 CFLAGS+=        -DHAVE_LDNS=1
19 #DPADD+=        ${LIBLDNS}
20 #LDADD+=        -lldns
21 #USEPRIVATELIB+= ldns
22 .endif
23
24 .include <bsd.prog.mk>
25
26 .PATH:  ${SSHDIR}
27
28 ${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h