ClamAV is an open source (GPLv2) anti-virus toolkit.
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.
 
 
 
 
 
 
clamav/libclammspack/winbuild.sh

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