Fix nmakefiles
LIB is already an environment variable on Windows
This commit is contained in:
parent
7ad19a30a4
commit
d503a712ba
@ -1,16 +1,16 @@
|
|||||||
# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
|
# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
|
||||||
# nmake /f Makefile.Microsoft_nmake
|
# nmake /f Makefile.Microsoft_nmake
|
||||||
|
|
||||||
LIB=libkyber768_clean.lib
|
LIBRARY=libkyber768_clean.lib
|
||||||
OBJECTS=cbd.obj indcpa.obj kem.obj ntt.obj poly.obj polyvec.obj precomp.obj reduce.obj verify.obj
|
OBJECTS=cbd.obj indcpa.obj kem.obj ntt.obj poly.obj polyvec.obj precomp.obj reduce.obj verify.obj
|
||||||
|
|
||||||
CFLAGS=/I ..\..\..\common /W4 /WX
|
CFLAGS=/I ..\..\..\common /W4 /WX
|
||||||
|
|
||||||
all: $(LIB)
|
all: $(LIBRARY)
|
||||||
|
|
||||||
$(LIB): $(OBJECTS)
|
$(LIBRARY): $(OBJECTS)
|
||||||
LIB.EXE /OUT:$@ $**
|
LIB.EXE /OUT:$@ $**
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
DEL $(OBJECTS)
|
-DEL $(OBJECTS)
|
||||||
DEL $(LIB)
|
-DEL $(LIBRARY)
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
|
# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
|
||||||
# nmake /f Makefile.Microsoft_nmake
|
# nmake /f Makefile.Microsoft_nmake
|
||||||
|
|
||||||
LIB=libdilithium-iii_clean.lib
|
LIBRARY=libdilithium-iii_clean.lib
|
||||||
OBJECTS=ntt.obj packing.obj poly.obj polyvec.obj reduce.obj rounding.obj sign.obj
|
OBJECTS=ntt.obj packing.obj poly.obj polyvec.obj reduce.obj rounding.obj sign.obj
|
||||||
|
|
||||||
CFLAGS=/I ..\..\..\common /W1 /WX # FIXME: ideally would use /W4 instead of /W1, but too many failures in Dilithium right now
|
CFLAGS=/I ..\..\..\common /W1 /WX # FIXME: ideally would use /W4 instead of /W1, but too many failures in Dilithium right now
|
||||||
|
|
||||||
all: $(LIB)
|
all: $(LIBRARY)
|
||||||
|
|
||||||
$(LIB): $(OBJECTS)
|
$(LIBRARY): $(OBJECTS)
|
||||||
LIB.EXE /OUT:$@ $**
|
LIB.EXE /OUT:$@ $**
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
DEL $(OBJECTS)
|
-DEL $(OBJECTS)
|
||||||
DEL $(LIB)
|
-DEL $(LIBRARY)
|
||||||
|
Loading…
Reference in New Issue
Block a user