diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2014-08-10 03:46:49 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2014-08-10 03:46:49 +0200 |
commit | ecc4b4206e268cf6fb4c01bceff647096914fa47 (patch) | |
tree | 499782cc16504c40cdbca41b494ed25795ccca57 /Makefile | |
parent | 9977a07353f5c7f84c14653df85fd18a17b824d1 (diff) | |
download | xK-ecc4b4206e268cf6fb4c01bceff647096914fa47.tar.gz xK-ecc4b4206e268cf6fb4c01bceff647096914fa47.tar.xz xK-ecc4b4206e268cf6fb4c01bceff647096914fa47.zip |
kike: fix the Makefile
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 < $< > $@ |