From 5689c9734223fb349bba526d620823a803c3b67e Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Wed, 21 Jul 2010 20:02:50 +0200 Subject: Modified NCR-USER API to "simplify" and allow setting of size of data structure without special system call. --- examples/Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'examples/Makefile') 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 -- cgit