freebsd-src/sbin/gbde/Makefile
Poul-Henning Kamp d220f5beb9 Complete the Geom Based Disk Encryption: Add the OAM utility.
Sponsored by:	DARPA and NAI Labs
2002-10-20 11:16:13 +00:00

26 lines
489 B
Makefile

# $FreeBSD$
PROG= gbde
SRCS= gbde.c template.c
SRCS+= geom_enc.c
SRCS+= rijndael-alg-fst.c
SRCS+= rijndael-api-fst.c
SRCS+= g_bde_lock.c
CFLAGS+= -I/sys
VPATH += ${.CURDIR}/../../sys/geom:${.CURDIR}/../../sys/geom/bde:${.CURDIR}/../../sys/crypto/rijndael
CLEANFILES+= template.c
MAN= gbde.8
LDADD= -lmd -lutil
.include <bsd.prog.mk>
template.c: template.txt
file2c 'const char template[] = {' ',0};' \
< ${.CURDIR}/template.txt > template.c
test: ${PROG}
sh ${.CURDIR}/test.sh