2019-09-09 12:40:40 +01:00
|
|
|
# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
|
|
|
|
# nmake /f Makefile.Microsoft_nmake
|
|
|
|
|
2020-11-27 17:55:15 +00:00
|
|
|
LIBRARY=librainbowIII-circumzenithal_clean.lib
|
2019-09-24 12:21:05 +01:00
|
|
|
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
|
2019-09-09 12:40:40 +01:00
|
|
|
|
2019-10-21 13:23:59 +01:00
|
|
|
CFLAGS=/nologo /O2 /I ..\..\..\common /W4 /WX
|
2019-09-09 12:40:40 +01:00
|
|
|
|
|
|
|
all: $(LIBRARY)
|
|
|
|
|
|
|
|
# Make sure objects are recompiled if headers change.
|
|
|
|
$(OBJECTS): *.h
|
|
|
|
|
|
|
|
$(LIBRARY): $(OBJECTS)
|
|
|
|
LIB.EXE /NOLOGO /WX /OUT:$@ $**
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-DEL $(OBJECTS)
|
|
|
|
-DEL $(LIBRARY)
|