summaryrefslogtreecommitdiffstats
path: root/examples/Makefile
diff options
context:
space:
mode:
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