From 59b1c5c056269a5151ef7a17cdedf8a3caccfc61 Mon Sep 17 00:00:00 2001
From: Přemysl Janouch
Date: Wed, 11 Feb 2015 01:53:19 +0100
Subject: Convert to CMake
---
Makefile | 29 -----------------------------
1 file changed, 29 deletions(-)
delete mode 100644 Makefile
(limited to 'Makefile')
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 17e20e2..0000000
--- a/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-SHELL = /bin/sh
-CC = clang
-# -Wunused-function is pretty annoying here, as everything is static and not
-# all parts of common.c are used in all the executables
-CFLAGS = -std=c99 -Wall -Wextra -Wno-unused-function \
- -ggdb -fsanitize=address,undefined
-# -lpthread is only there for debugging (gdb & errno)
-# -lrt is only for glibc < 2.17
-LDFLAGS = `pkg-config --libs libssl` -lpthread -lrt
-
-.PHONY: all clean
-.SUFFIXES:
-
-targets = zyklonb kike
-
-all: $(targets)
-
-clean:
- rm -f $(targets) kike-replies.c
-
-zyklonb: zyklonb.c common.c siphash.c
- $(CC) zyklonb.c siphash.c -o $@ $(CFLAGS) $(LDFLAGS)
-kike: kike.c common.c siphash.c kike-replies.c
- $(CC) kike.c siphash.c -o $@ $(CFLAGS) $(LDFLAGS)
-
-# Generates kike.msg as a by-product
-kike-replies.c: kike-replies
- $(SHELL) kike-gen-replies.sh < $< > $@
-
--
cgit v1.2.3-70-g09d2