aboutsummaryrefslogtreecommitdiff
path: root/examples/04-turboshake128/Makefile
blob: 020ca7c0cf44b59b8c4b06df0ee2f857d4612dd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CFLAGS=-W -Wall -Wextra -Werror -pedantic -std=c11 -O3 -march=native -mtune=native
APP=./turbohash128-example
OBJS=sha3.o main.o

.PHONY=all

all: $(APP)

$(APP): $(OBJS)
	$(CC) -o $(APP) $(CFLAGS) $(OBJS)

%.o: %.c
	$(CC) -c $(CFLAGS) $<

clean:
	$(RM) -f $(APP) $(OBJS)