blob: 0154900ff79e63bb494260a7224bb81de4a189f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $OpenBSD: Makefile,v 1.5 2017/06/22 18:07:30 bluhm Exp $
DIR= ${.CURDIR}/../../../../sys
CFLAGS+= -I${DIR}
PROG= aestest
SRCS= aestest.c
CDIAGFLAGS= -Wall
#CDIAGFLAGS+= -Werror
CDIAGFLAGS+= -Wpointer-arith
CDIAGFLAGS+= -Wno-uninitialized
CDIAGFLAGS+= -Wstrict-prototypes
CDIAGFLAGS+= -Wmissing-prototypes
CDIAGFLAGS+= -Wunused
CDIAGFLAGS+= -Wsign-compare
CDIAGFLAGS+= -Wshadow
.PATH: ${DIR}/crypto
SRCS+= aes.c
run-regress-${PROG}: ${PROG}
./${PROG} ${.CURDIR}/vectors/*.txt
.include <bsd.regress.mk>
|