1e8db6e2f6
Happy birthday to: rwatson
16 lines
380 B
Makefile
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
|