Makefile revision 105513
1# $FreeBSD: head/sbin/gbde/Makefile 105513 2002-10-20 11:16:13Z phk $
2
3PROG=	gbde
4SRCS=	gbde.c template.c
5SRCS+=	geom_enc.c
6SRCS+=	rijndael-alg-fst.c
7SRCS+=	rijndael-api-fst.c
8SRCS+=	g_bde_lock.c
9
10CFLAGS+= -I/sys
11VPATH += ${.CURDIR}/../../sys/geom:${.CURDIR}/../../sys/geom/bde:${.CURDIR}/../../sys/crypto/rijndael
12
13CLEANFILES+= template.c
14
15MAN=	gbde.8
16LDADD=	-lmd  -lutil
17
18.include <bsd.prog.mk>
19
20template.c:	template.txt
21	file2c 'const char template[] = {' ',0};' \
22		< ${.CURDIR}/template.txt > template.c
23
24test:	${PROG}
25	sh ${.CURDIR}/test.sh
26