mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
16 lines
340 B
Makefile
16 lines
340 B
Makefile
# This Makefile can be used with GNU Make or BSD Make
|
|
|
|
LIB=libdilithium-iii_clean.a
|
|
OBJECTS=ntt.o packing.o poly.o polyvec.o reduce.o rounding.o sign.o
|
|
|
|
CFLAGS=-Wall -Wextra -Wpedantic -Werror -std=c99 -I../../../common $(EXTRAFLAGS)
|
|
|
|
all: $(LIB)
|
|
|
|
$(LIB): $(OBJECTS)
|
|
$(AR) -r $@ $(OBJECTS)
|
|
|
|
clean:
|
|
$(RM) $(OBJECTS)
|
|
$(RM) $(LIB)
|