From 1680f3f1253e971ef4331b31ee5231d669f36650 Mon Sep 17 00:00:00 2001 From: Leon Date: Mon, 27 May 2019 19:16:31 +0200 Subject: [PATCH] add nmake makefile --- .../clean/Makefile.Microsoft_nmake | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 crypto_kem/ledakemlt12/clean/Makefile.Microsoft_nmake diff --git a/crypto_kem/ledakemlt12/clean/Makefile.Microsoft_nmake b/crypto_kem/ledakemlt12/clean/Makefile.Microsoft_nmake new file mode 100644 index 00000000..e4bfc760 --- /dev/null +++ b/crypto_kem/ledakemlt12/clean/Makefile.Microsoft_nmake @@ -0,0 +1,19 @@ +# This Makefile can be used with Microsoft Visual Studio's nmake using the command: +# nmake /f Makefile.Microsoft_nmake + +LIBRARY=libledakemlt12_clean.lib +OBJECTS=bf_decoding.obj dfr_test.obj gf2x_arith_mod_xPplusOne.obj gf2x_arith.obj H_Q_matrices_generation.obj kem.obj niederreiter.obj rng.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)