freebsd-dev/sbin/gbde/Makefile

33 lines
714 B
Makefile
Raw Normal View History

# $FreeBSD$
PROG= gbde
SRCS= gbde.c template.c
SRCS+= rijndael-alg-fst.c
SRCS+= rijndael-api-fst.c
SRCS+= sha2.c
SRCS+= g_bde_lock.c
# rijndael-fst.c does evil casting things which can results in warnings,
# the test-vectors check out however, so it works right.
NO_WCAST_ALIGN=
2002-12-17 19:16:10 +00:00
CFLAGS+= -I${.CURDIR}/../../sys
2003-04-03 12:36:56 +00:00
.PATH: ${.CURDIR}/../../sys/geom/bde \
${.CURDIR}/../../sys/crypto/rijndael \
${.CURDIR}/../../sys/crypto/sha2
CLEANFILES+= template.c
MAN= gbde.8
DPADD= ${LIBMD} ${LIBUTIL} ${LIBGEOM}
LDADD= -lmd -lutil -lgeom
2003-04-16 11:54:11 +00:00
template.c: template.txt
file2c 'const char template[] = {' ',0};' \
< ${.CURDIR}/template.txt > template.c
2003-04-16 11:54:11 +00:00
test: ${PROG}
sh ${.CURDIR}/test.sh ${.CURDIR}
2003-04-16 11:54:11 +00:00
.include <bsd.prog.mk>