freebsd-dev/crypto/openssh/Makefile.inc
2001-05-04 03:57:05 +00:00

16 lines
380 B
Makefile

# $OpenBSD: Makefile.inc,v 1.13 2001/01/29 01:58:14 niklas Exp $
CFLAGS+= -I${.CURDIR}/..
CFLAGS+= -Wall
.include <bsd.obj.mk>
.if exists(${.CURDIR}/../lib/${__objdir})
LDADD+= -L${.CURDIR}/../lib/${__objdir} -lssh
DPADD+= ${.CURDIR}/../lib/${__objdir}/libssh.a
.else
LDADD+= -L${.CURDIR}/../lib -lssh
DPADD+= ${.CURDIR}/../lib/libssh.a
.endif