summaryrefslogtreecommitdiffstats
path: root/examples/Makefile
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2010-07-21 20:02:50 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2010-07-21 20:02:50 +0200
commit5689c9734223fb349bba526d620823a803c3b67e (patch)
tree07d02fcc9b0f10f41344312474c91fd4cf3da615 /examples/Makefile
parent514a0e99c176081e1cb610a3e8dabf4d2da38dab (diff)
downloadcryptodev-linux-5689c9734223fb349bba526d620823a803c3b67e.tar.gz
cryptodev-linux-5689c9734223fb349bba526d620823a803c3b67e.tar.xz
cryptodev-linux-5689c9734223fb349bba526d620823a803c3b67e.zip
Modified NCR-USER API to "simplify" and allow setting of size of data structure without special system call.
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile
index c65297f..a2849d3 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -17,11 +17,15 @@ hmac: hmac.c
ncr: ncr.c
$(CC) $(CFLAGS) $< -o $@
+ncr-user: ncr-user.c
+ $(CC) $(CFLAGS) $< -o $@
+
pk: pk.c
$(CC) $(CFLAGS) $< -o $@ -L/usr/local/lib -lgnutls
check: $(progs)
./ncr
+ ./ncr-user
./pk
./cipher
./hmac