diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -10,7 +10,7 @@ LDFLAGS = `pkg-config --libs libssl` -lpthread .PHONY: all clean .SUFFIXES: -targets = zyklonb kike kike.msg +targets = zyklonb kike all: $(targets) @@ -22,6 +22,7 @@ zyklonb: zyklonb.c common.c siphash.c kike: kike.c common.c siphash.c kike-replies.c $(CC) kike.c siphash.c -o $@ $(CFLAGS) $(LDFLAGS) -kike-replies.c kike.msg: kike-replies +# Generates kike.msg as a by-product +kike-replies.c: kike-replies $(SHELL) kike-gen-replies.sh < $< > $@ |