# This Makefile can be used with Microsoft Visual Studio's nmake using the command: # nmake /f Makefile.Microsoft_nmake LIBRARY=libntrulpr653_clean.lib OBJECTS=crypto_core_multsntrup653.obj crypto_decode_256x16.obj crypto_decode_256x2.obj crypto_decode_653x1541.obj crypto_decode_653x3.obj crypto_decode_653xint16.obj crypto_decode_653xint32.obj crypto_encode_256x16.obj crypto_encode_256x2.obj crypto_encode_653x1541.obj crypto_encode_653x1541round.obj crypto_encode_653x3.obj crypto_encode_653xint16.obj crypto_sort_int32.obj crypto_sort_uint32.obj crypto_stream_aes256ctr.obj crypto_verify_1025.obj kem.obj CFLAGS=/nologo /O2 /I ..\..\..\common /W4 /WX all: $(LIBRARY) # Make sure objects are recompiled if headers change. $(OBJECTS): *.h $(LIBRARY): $(OBJECTS) LIB.EXE /NOLOGO /WX /OUT:$@ $** clean: -DEL $(OBJECTS) -DEL $(LIBRARY)