Deleted Added
full compact
Makefile (203916) Makefile (211725)
1# $FreeBSD: head/sbin/gbde/Makefile 203916 2010-02-15 14:07:40Z uqs $
1# $FreeBSD: head/sbin/gbde/Makefile 211725 2010-08-23 22:24:11Z imp $
2
3PROG= gbde
4SRCS= gbde.c template.c
5SRCS+= rijndael-alg-fst.c
6SRCS+= rijndael-api-fst.c
7SRCS+= sha2.c
8SRCS+= g_bde_lock.c
9
10# rijndael-fst.c does evil casting things which results in warnings on
11# 64 bit machines, the test-vectors check out however, so it works right.
2
3PROG= gbde
4SRCS= gbde.c template.c
5SRCS+= rijndael-alg-fst.c
6SRCS+= rijndael-api-fst.c
7SRCS+= sha2.c
8SRCS+= g_bde_lock.c
9
10# rijndael-fst.c does evil casting things which results in warnings on
11# 64 bit machines, the test-vectors check out however, so it works right.
12.if ${MACHINE_ARCH} != "i386"
12.if ${MACHINE_CPUARCH} != "i386"
13WARNS?= 3
14.endif
15
16CFLAGS+= -I${.CURDIR}/../../sys
17.PATH: ${.CURDIR}/../../sys/geom/bde \
18 ${.CURDIR}/../../sys/crypto/rijndael \
19 ${.CURDIR}/../../sys/crypto/sha2
20

--- 14 unchanged lines hidden ---
13WARNS?= 3
14.endif
15
16CFLAGS+= -I${.CURDIR}/../../sys
17.PATH: ${.CURDIR}/../../sys/geom/bde \
18 ${.CURDIR}/../../sys/crypto/rijndael \
19 ${.CURDIR}/../../sys/crypto/sha2
20

--- 14 unchanged lines hidden ---