Errors while compiling the Makefile.msc on WIndows64

Hi,

I need to encrypt an sqlite3 database. I found your solution in forums. I tried to compile your code by following a tutorial on youtube, but I get these error output:

E:\Program Files\sqlcipher-master>nmake /f Makefile.msc

Microsoft (R) Program Maintenance Utility Version 14.25.28612.0
Copyright (C) Microsoft Corporation. Tous droits réservés.

        C:\MinGW64\mingw64\bin\gcc.exe -nologo -W4 -Fdlemon.pdb   -MT -DNDEBUG -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS -O2 -Zi -wd4054 -wd4055 -wd4100 -wd4127 -wd4130 -wd4152 -wd4189 -wd4206 -wd4210 -wd4232 -wd4244 -wd4305 -wd4306 -wd4702 -wd4706 -Daccess=_access  -Felemon.exe .\tool\lemon.c /link /DEBUG
gcc.exe: error: /link: No such file or directory
gcc.exe: error: /DEBUG: No such file or directory
gcc.exe: error: unrecognized command line option '-nologo'
gcc.exe: error: unrecognized command line option '-W4'; did you mean '-W'?
gcc.exe: error: unrecognized command line option '-Zi'; did you mean '-Z'?
gcc.exe: error: unrecognized command line option '-wd4054'
gcc.exe: error: unrecognized command line option '-wd4055'
gcc.exe: error: unrecognized command line option '-wd4100'
gcc.exe: error: unrecognized command line option '-wd4127'
gcc.exe: error: unrecognized command line option '-wd4130'
gcc.exe: error: unrecognized command line option '-wd4152'
gcc.exe: error: unrecognized command line option '-wd4189'
gcc.exe: error: unrecognized command line option '-wd4206'
gcc.exe: error: unrecognized command line option '-wd4210'
gcc.exe: error: unrecognized command line option '-wd4232'
gcc.exe: error: unrecognized command line option '-wd4244'
gcc.exe: error: unrecognized command line option '-wd4305'
gcc.exe: error: unrecognized command line option '-wd4306'
gcc.exe: error: unrecognized command line option '-wd4702'
gcc.exe: error: unrecognized command line option '-wd4706'
NMAKE : fatal error U1077: 'C:\MinGW64\mingw64\bin\gcc.exe' : code retour '0x1'
Stop.

Can anyone help me please?