1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_kem/kyber768/clean/Makefile

16 lines
358 B
Makefile
Raw Normal View History

# This Makefile has been tested with GNU Make and BSD Make
2019-02-02 01:58:26 +00:00
LIB=libkyber768_clean.a
OBJECTS=cbd.o indcpa.o kem.o kex.o ntt.o poly.o polyvec.o precomp.o reduce.o verify.o
2019-02-02 01:58:26 +00:00
2019-02-06 17:22:58 +00:00
CFLAGS=-Wall -Wextra -Wpedantic -Werror -std=c99 -I../../../common $(EXTRAFLAGS)
2019-02-02 01:58:26 +00:00
2019-02-06 17:41:55 +00:00
all: $(LIB)
2019-02-06 17:22:58 +00:00
$(LIB): $(OBJECTS)
2019-02-06 17:41:55 +00:00
$(AR) -r $@ $(OBJECTS)
2019-02-02 01:58:26 +00:00
clean:
2019-02-06 17:41:55 +00:00
$(RM) $(OBJECTS)
$(RM) $(LIB)