您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

20 行
447 B

  1. # This Makefile can be used with Microsoft Visual Studio's nmake using the command:
  2. # nmake /f Makefile.Microsoft_nmake
  3. LIBRARY=libfrodokem976aes_opt.lib
  4. OBJECTS=kem.obj matrix_aes.obj noise.obj util.obj
  5. CFLAGS=/nologo /I ..\..\..\common /W4 /WX
  6. all: $(LIBRARY)
  7. # Make sure objects are recompiled if headers change.
  8. $(OBJECTS): *.h
  9. $(LIBRARY): $(OBJECTS)
  10. LIB.EXE /NOLOGO /WX /OUT:$@ $**
  11. clean:
  12. -DEL $(OBJECTS)
  13. -DEL $(LIBRARY)