summaryrefslogtreecommitdiff
path: root/Makefile
blob: f47959a4253948ebb518570c40511a0b4ad8b991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)