summaryrefslogtreecommitdiff
path: root/Mkfiles
diff options
context:
space:
mode:
authorJim Kukunas <james.t.kukunas@linux.intel.com>2016-01-23 23:32:50 -0800
committerCyrill Gorcunov <gorcunov@gmail.com>2016-01-24 14:14:00 +0300
commitba754eec038dd419d64ada943af4476202d5af25 (patch)
tree0e717e1f32d4ee00a4cb50cffe5a3a9c731d6d27 /Mkfiles
parentc9b3b8af41210528b449e94623ddf4a3bae3c2f2 (diff)
downloadnasm-ba754eec038dd419d64ada943af4476202d5af25.tar.gz
Add a MD5 implementation
This implementation was written by Colin Plumb and is in the public domain. I've updated it to use stdint.h and the standard C types rather than sys/types.h for portability. Signed-off-by: Jim Kukunas <james.t.kukunas@linux.intel.com> Acked-by: H. Peter Anvin <hpa@zytor.com> Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'Mkfiles')
-rw-r--r--Mkfiles/msvc.mak3
1 files changed, 2 insertions, 1 deletions
diff --git a/Mkfiles/msvc.mak b/Mkfiles/msvc.mak
index b7434126..a4df3e30 100644
--- a/Mkfiles/msvc.mak
+++ b/Mkfiles/msvc.mak
@@ -61,7 +61,8 @@ NASM = nasm.$(O) nasmlib.$(O) ver.$(O) \
lib/strlcpy.$(O) \
preproc-nop.$(O) \
disp8.$(O) \
- iflag.$(O)
+ iflag.$(O) \
+ md5c.$(O)
NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) ver.$(O) \
insnsd.$(O) insnsb.$(O) insnsn.$(O) regs.$(O) regdis.$(O) \