Raise WARNS in secure/ as high as possible and fix some resulting warnings.
[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 WARNS?= 1
8
9 .if exists(${.OBJDIR}/../../lib/libcipher)
10 LDFLAGS+= -L${.OBJDIR}/../../lib/libcipher
11 .else
12 LDFLAGS+= -L${.CURDIR}/../../lib/libcipher
13 .endif
14
15 LDADD+= -lcipher
16 DPADD+= libcipher.a
17
18 .include <bsd.prog.mk>