# This Makefile can be used with Microsoft Visual Studio's nmake using the command: # nmake /f Makefile.Microsoft_nmake LIB=libkyber768_clean.lib OBJECTS=cbd.obj indcpa.obj kem.obj ntt.obj poly.obj polyvec.obj precomp.obj reduce.obj verify.obj CFLAGS=/I ..\..\..\common /W4 /WX all: $(LIB) $(LIB): $(OBJECTS) LIB.EXE /OUT:$@ $** clean: DEL $(OBJECTS) DEL $(LIB)