cd9a2f5c28
really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current.
17 lines
320 B
Makefile
17 lines
320 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $Id: Makefile,v 1.6 1995/12/21 17:57:16 ache Exp $
|
|
|
|
PROG= bdes
|
|
SRCS= bdes.c
|
|
|
|
.if exists(${.OBJDIR}/../../lib/libcipher)
|
|
LDFLAGS+= -L${.OBJDIR}/../../lib/libcipher
|
|
.else
|
|
LDFLAGS+= -L${.CURDIR}/../../lib/libcipher
|
|
.endif
|
|
|
|
LDADD+= -lcipher
|
|
DPADD+= libcipher.a
|
|
|
|
.include <bsd.prog.mk>
|