pqc/crypto_kem/kyber768/clean/Makefile.Microsoft_nmake
Thom Wiggers d503a712ba
Fix nmakefiles
LIB is already an environment variable on Windows
2019-03-06 17:14:35 +01:00

17 lines
400 B
Makefile

# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
# nmake /f Makefile.Microsoft_nmake
LIBRARY=libkyber768_clean.lib
OBJECTS=cbd.obj indcpa.obj kem.obj ntt.obj poly.obj polyvec.obj precomp.obj reduce.obj verify.obj
CFLAGS=/I ..\..\..\common /W4 /WX
all: $(LIBRARY)
$(LIBRARY): $(OBJECTS)
LIB.EXE /OUT:$@ $**
clean:
-DEL $(OBJECTS)
-DEL $(LIBRARY)