You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
492 B

  1. # This Makefile can be used with Microsoft Visual Studio's nmake using the command:
  2. # nmake /f Makefile.Microsoft_nmake
  3. LIBRARY=libntruhps4096821_clean.lib
  4. OBJECTS=crypto_sort.obj kem.obj owcpa.obj pack3.obj packq.obj poly.obj sample.obj verify.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)