From 865fffeafdc6622285a2dd31e17999965569312a Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Sun, 3 May 2015 23:40:59 -0400 Subject: Initial commit of AES Key Wrap implementation. --- GNUmakefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 GNUmakefile (limited to 'GNUmakefile') diff --git a/GNUmakefile b/GNUmakefile new file mode 100644 index 0000000..6ff3963 --- /dev/null +++ b/GNUmakefile @@ -0,0 +1,22 @@ +CRYPTLIB_DIR := /Users/sra/cryptlib/cryptlib-3.4.2 + +CFLAGS += -g -I${CRYPTLIB_DIR} -DAES_KEY_WRAP_SELF_TEST +LDFLAGS += -g -L${CRYPTLIB_DIR} -lcl + +EXE := aes_key_wrap +SRC := $(wildcard *.c) +OBJ := $(SRC:.c=.o) + +all: ${EXE} + +clean: + rm -f *.o ${EXE} + +${EXE}: ${OBJ} + ${CC} ${LDFLAGS} -o $@ $^ + +aes_key_wrap.o = aes_key_wrap.c aes_key_wrap.h + +test: ${EXE} + ./${EXE} + -- cgit v1.2.3