mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
15 lines
239 B
Makefile
15 lines
239 B
Makefile
LIB=libdilithium-iii_clean.lib
|
|
|
|
OBJECTS=ntt.obj packing.obj poly.obj polyvec.obj reduce.obj rounding.obj sign.obj
|
|
|
|
CFLAGS=/I ..\..\..\common /W1 /WX
|
|
|
|
all: $(LIB)
|
|
|
|
$(LIB): $(OBJECTS)
|
|
LIB.EXE /OUT:$@ $**
|
|
|
|
clean:
|
|
DEL $(OBJECTS)
|
|
DEL $(LIB)
|