summaryrefslogtreecommitdiff
path: root/tests/cavp-tests/Makefile
blob: 2de46f82dda63ab4837d1dbf50542bce64addeda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# backend (0 to auto-detect)
BACKEND ?= 0

CFLAGS=-W -Wall -Wextra -Werror -pedantic -std=c11 -O3 -march=native -mtune=native -DBACKEND=$(BACKEND)
APP=./cavp-tests
OBJS=sha3.o main.o

.PHONY=all clean

all: $(APP)

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

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

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