summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
Diffstat (limited to 'demos')
-rw-r--r--demos/kdf/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/demos/kdf/Makefile b/demos/kdf/Makefile
index b561de43b7..0aa5113105 100644
--- a/demos/kdf/Makefile
+++ b/demos/kdf/Makefile
@@ -7,14 +7,16 @@ CFLAGS = -I../../include -g
LDFLAGS = -L../..
LDLIBS = -lcrypto
-all: hkdf
+all: hkdf pbkdf2 scrypt
%.o: %.c
$(CC) $(CFLAGS) -c $<
hkdf: hkdf.o
+pbkdf2: pbkdf2.o
+scrypt: scrypt.o
test: ;
clean:
- $(RM) *.o hkdf
+ $(RM) *.o hkdf pbkdf2 scrypt