Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / secure / usr.bin / bdes / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD: src/secure/usr.bin/bdes/Makefile,v 1.10 1999/08/28 01:30:30 peter Exp $
3 # $DragonFly: src/secure/usr.bin/bdes/Makefile,v 1.2 2003/06/17 04:27:48 dillon Exp $
4
5 PROG=   bdes
6 SRCS=   bdes.c
7
8 .if exists(${.OBJDIR}/../../lib/libcipher)
9 LDFLAGS+= -L${.OBJDIR}/../../lib/libcipher
10 .else
11 LDFLAGS+= -L${.CURDIR}/../../lib/libcipher
12 .endif
13
14 LDADD+= -lcipher
15 DPADD+= libcipher.a
16
17 .include <bsd.prog.mk>