25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

20 satır
564 B

  1. # This Makefile can be used with Microsoft Visual Studio's nmake using the command:
  2. # nmake /f Makefile.Microsoft_nmake
  3. LIBRARY=libledakemlt12_leaktime.lib
  4. OBJECTS=bf_decoding.obj dfr_test.obj gf2x_arith_mod_xPplusOne.obj gf2x_arith.obj H_Q_matrices_generation.obj kem.obj niederreiter.obj rng.obj sort.obj utils.obj
  5. CFLAGS=/nologo /O2 /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)