make srtp test.
[cryptodev-linux.git] / examples / Makefile
blob9a367d3043d37178de2cf9a3b187282983b157cf
1 KERNEL_DIR ?= /lib/modules/$(shell uname -r)/build
2 KBUILD_CFLAGS += -I..
4 hostprogs := cipher cipher-aead hmac speed async_cipher async_hmac \
5 async_speed sha_speed hashcrypt_speed fullspeed cipher-gcm \
6 cipher-aead-srtp
8 example-cipher-objs := cipher.o
9 example-cipher-aead-objs := cipher-aead.o
10 example-hmac-objs := hmac.o
11 example-speed-objs := speed.c
12 example-fullspeed-objs := fullspeed.c
13 example-sha-speed-objs := sha_speed.c
14 example-async-cipher-objs := async_cipher.o
15 example-async-hmac-objs := async_hmac.o
16 example-async-speed-objs := async_speed.o
17 example-hashcrypt-speed-objs := hashcrypt_speed.c
19 check: $(hostprogs)
20 ./cipher
21 ./hmac
22 ./async_cipher
23 ./async_hmac
25 clean:
26 rm -f *.o *~ $(hostprogs)