aboutsummaryrefslogtreecommitdiff
path: root/sbin/gbde/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/gbde/Makefile')
-rw-r--r--sbin/gbde/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/sbin/gbde/Makefile b/sbin/gbde/Makefile
deleted file mode 100644
index 8c84781fc4ed..000000000000
--- a/sbin/gbde/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-
-PACKAGE=geom
-PROG= gbde
-SRCS= gbde.c template.c
-SRCS+= rijndael-alg-fst.c
-SRCS+= rijndael-api-fst.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=
-NO_WMISSING_VARIABLE_DECLARATIONS=
-
-CFLAGS+= -I${SRCTOP}/sys
-.PATH: ${SRCTOP}/sys/geom/bde \
- ${SRCTOP}/sys/crypto/rijndael \
- ${SRCTOP}/sys/crypto/sha2
-
-CLEANFILES+= template.c
-
-MAN= gbde.8
-LIBADD= md util geom
-
-template.c: template.txt
- file2c 'const char template[] = {' ',0};' \
- < ${.CURDIR}/template.txt > template.c
-
-test: ${PROG}
- sh ${.CURDIR}/test.sh ${.CURDIR}
-
-.include <bsd.prog.mk>