pqc/crypto_kem/hqc-192-2-cca2/leaktime/Makefile.Microsoft_nmake

24 lines
759 B
Makefile
Raw Normal View History

# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
# nmake /f Makefile.Microsoft_nmake
LIBRARY=libhqc-192-2-cca2_leaktime.lib
OBJECTS=bch.obj fft.obj gf.obj gf2x.obj hqc.obj kem.obj parsing.obj repetition.obj tensor.obj vector.obj util.obj
# We ignore warning C4127: we sometimes use a conditional that depending
# on the parameters results in a case where if (const) is the case.
# The compiler should just optimise this away, but on MSVC we get
# a compiler complaint.
CFLAGS=/nologo /O2 /I ..\..\..\common /W4 /WX /wd4127
all: $(LIBRARY)
# Make sure objects are recompiled if headers change.
$(OBJECTS): *.h
$(LIBRARY): $(OBJECTS)
LIB.EXE /NOLOGO /WX /OUT:$@ $**
clean:
-DEL $(OBJECTS)
-DEL $(LIBRARY)