mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-27 09:51:30 +00:00
15 lines
355 B
Makefile
15 lines
355 B
Makefile
|
LIB=libkyber768_clean.lib
|
||
|
|
||
|
OBJECTS=cbd.obj indcpa.obj kem.obj kex.obj ntt.obj poly.obj polyvec.obj precomp.obj reduce.obj verify.obj
|
||
|
|
||
|
CFLAGS=/I ..\..\..\common /W1 /WX # FIXME: ideally would use /W4 instead of /W1, but too many failures in Kyber right now
|
||
|
|
||
|
all: $(LIB)
|
||
|
|
||
|
$(LIB): $(OBJECTS)
|
||
|
LIB.EXE /OUT:$@ $**
|
||
|
|
||
|
clean:
|
||
|
DEL $(OBJECTS)
|
||
|
DEL $(LIB)
|