diff options
| author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-07-21 20:02:50 +0200 |
|---|---|---|
| committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-07-21 20:02:50 +0200 |
| commit | 5689c9734223fb349bba526d620823a803c3b67e (patch) | |
| tree | 07d02fcc9b0f10f41344312474c91fd4cf3da615 /examples/Makefile | |
| parent | 514a0e99c176081e1cb610a3e8dabf4d2da38dab (diff) | |
| download | cryptodev-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/Makefile | 4 |
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 |
