5587cdb4a8
* fix prototypes for sphincs and static functions in aes.c * fix missing prototypes in all frodo variants * fix missing prototypes in kyber * remove const from non-pointer arguments in Frodo * add missing prototypes to requirements in README
20 lines
409 B
Makefile
20 lines
409 B
Makefile
# This Makefile can be used with GNU Make or BSD Make
|
|
|
|
LIB=libfrodokem640aes_clean.a
|
|
HEADERS=api.h params.h common.h
|
|
OBJECTS=kem.o matrix_aes.o noise.o util.o
|
|
|
|
CFLAGS=-Wall -Wextra -Wpedantic -Werror -Wmissing-prototypes -std=c99 -I../../../common $(EXTRAFLAGS)
|
|
|
|
all: $(LIB)
|
|
|
|
%.o: %.c $(HEADERS)
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
$(LIB): $(OBJECTS)
|
|
$(AR) -r $@ $(OBJECTS)
|
|
|
|
clean:
|
|
$(RM) $(OBJECTS)
|
|
$(RM) $(LIB)
|