Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

20 rader
580 B

  1. # This Makefile can be used with Microsoft Visual Studio's nmake using the command:
  2. # nmake /f Makefile.Microsoft_nmake
  3. LIBRARY=librainbowIa-cyclic-compressed_clean.lib
  4. OBJECTS = blas_comm.obj parallel_matrix_op.obj rainbow.obj rainbow_keypair.obj rainbow_keypair_computation.obj sign.obj utils_hash.obj utils_prng.obj blas.obj gf.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)