summaryrefslogtreecommitdiff
path: root/tests/cavp-tests/Makefile
blob: 7d5ac47f9f5aba757300c140ccd810ca3f65ed8f (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=./cavp-tests
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)