From 165a19da21d057606926730f432bf298ada2751e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Sat, 14 Jun 2014 20:26:28 +0200 Subject: Initial commit --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f47959a --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +SHELL = /bin/sh +CC = clang +CFLAGS = -ggdb -Wall -Wextra -std=c99 +LDFLAGS = `pkg-config --libs libssl` + +.PHONY: all clean + +targets = zyklonb + +all: $(targets) + +clean: + rm -f $(targets) + +zyklonb: src/zyklonb.c src/siphash.c + $(CC) $^ -o $@ $(CFLAGS) $(LDFLAGS) + -- cgit v1.2.3