Add Windows Makefile
This commit is contained in:
parent
e153dfdf56
commit
f0ba4f2051
19
crypto_kem/frodokem640shake/clean/Makefile.Microsoft_nmake
Normal file
19
crypto_kem/frodokem640shake/clean/Makefile.Microsoft_nmake
Normal file
@ -0,0 +1,19 @@
|
||||
# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
|
||||
# nmake /f Makefile.Microsoft_nmake
|
||||
|
||||
LIBRARY=lifrodokem640shake_clean.lib
|
||||
OBJECTS=kem.obj matrix_shake.obj noise.obj util.obj
|
||||
|
||||
CFLAGS=/nologo /I ..\..\..\common /W4 /WX
|
||||
|
||||
all: $(LIBRARY)
|
||||
|
||||
# Make sure objects are recompiled if headers change.
|
||||
$(OBJECTS): *.h
|
||||
|
||||
$(LIBRARY): $(OBJECTS)
|
||||
LIB.EXE /NOLOGO /WX /OUT:$@ $**
|
||||
|
||||
clean:
|
||||
-DEL $(OBJECTS)
|
||||
-DEL $(LIBRARY)
|
Loading…
Reference in New Issue
Block a user