Initial commit

This commit is contained in:
2014-06-14 20:26:28 +02:00
commit 165a19da21
6 changed files with 3766 additions and 0 deletions

17
Makefile Normal file
View File

@@ -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)