mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
447 B
23 lines
447 B
#!/bin/sh
|
|
cat <<END
|
|
!!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!!
|
|
This builds the libmspack into mspack.dll on
|
|
Windows with Microsoft compiler.
|
|
After compilation find the library in the
|
|
directory mspack
|
|
!!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!!
|
|
END
|
|
|
|
cat >config.h <<END
|
|
#define inline __inline
|
|
END
|
|
|
|
cd mspack
|
|
|
|
cl /O2 -I. /c *.c
|
|
link *.obj /DLL /DEF:mspack.def /IMPLIB:mspack.lib
|
|
|
|
cd ..
|
|
|
|
ls -l mspack/mspack.dll
|
|
ls -l mspack/mspack.lib
|
|
|