2019-02-08 14:42:53 +00:00
|
|
|
# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
|
|
|
|
# nmake /f Makefile.Microsoft_nmake
|
2019-02-06 23:37:50 +00:00
|
|
|
|
2019-02-08 14:42:53 +00:00
|
|
|
LIB=libkyber768_clean.lib
|
2019-02-14 15:00:52 +00:00
|
|
|
OBJECTS=cbd.obj indcpa.obj kem.obj ntt.obj poly.obj polyvec.obj precomp.obj reduce.obj verify.obj
|
2019-02-06 23:37:50 +00:00
|
|
|
|
2019-02-14 15:02:57 +00:00
|
|
|
CFLAGS=/I ..\..\..\common /W4 /WX # FIXME: ideally would use /W4 instead of /W1, but too many failures in Kyber right now
|
2019-02-06 23:37:50 +00:00
|
|
|
|
|
|
|
all: $(LIB)
|
|
|
|
|
|
|
|
$(LIB): $(OBJECTS)
|
|
|
|
LIB.EXE /OUT:$@ $**
|
|
|
|
|
|
|
|
clean:
|
|
|
|
DEL $(OBJECTS)
|
|
|
|
DEL $(LIB)
|