|
@@ -10,7 +10,7 @@ LDFLAGS = `pkg-config --libs libssl` -lpthread
|
10
|
10
|
.PHONY: all clean
|
11
|
11
|
.SUFFIXES:
|
12
|
12
|
|
13
|
|
-targets = zyklonb kike kike.msg
|
|
13
|
+targets = zyklonb kike
|
14
|
14
|
|
15
|
15
|
all: $(targets)
|
16
|
16
|
|
|
@@ -22,6 +22,7 @@ zyklonb: zyklonb.c common.c siphash.c
|
22
|
22
|
kike: kike.c common.c siphash.c kike-replies.c
|
23
|
23
|
$(CC) kike.c siphash.c -o $@ $(CFLAGS) $(LDFLAGS)
|
24
|
24
|
|
25
|
|
-kike-replies.c kike.msg: kike-replies
|
|
25
|
+# Generates kike.msg as a by-product
|
|
26
|
+kike-replies.c: kike-replies
|
26
|
27
|
$(SHELL) kike-gen-replies.sh < $< > $@
|
27
|
28
|
|