Makefile (2c97f721e7032f8c0e1d19a6b8887bd2af8cfa0f) | Makefile (ff75e00737d1906e8a2c37df4f46332d746c6e1c) |
---|---|
1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5PROG= ssh-keygen 6SRCS= ssh-keygen.c 7CFLAGS+=-I${SSHDIR} -include ssh_namespace.h 8 9.if !defined(NO_SHARED) 10# required when linking with a dynamic libssh 11SRCS+= roaming_dummy.c 12.endif 13 14LIBADD= ssh 15 16.if ${MK_LDNS} != "no" 17CFLAGS+= -DHAVE_LDNS=1 | 1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5PROG= ssh-keygen 6SRCS= ssh-keygen.c 7CFLAGS+=-I${SSHDIR} -include ssh_namespace.h 8 9.if !defined(NO_SHARED) 10# required when linking with a dynamic libssh 11SRCS+= roaming_dummy.c 12.endif 13 14LIBADD= ssh 15 16.if ${MK_LDNS} != "no" 17CFLAGS+= -DHAVE_LDNS=1 |
18LIBADD+= ldns | |
19.endif 20 | 18.endif 19 |
21LIBADD+= crypt crypto z | 20LIBADD+= crypto |
22 23.include <bsd.prog.mk> 24 25.PATH: ${SSHDIR} 26 27${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h | 21 22.include <bsd.prog.mk> 23 24.PATH: ${SSHDIR} 25 26${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h |