2001-04-10 05:04:59 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set echo
|
|
|
|
|
2004-08-18 15:52:25 +04:00
|
|
|
export CC=cl
|
|
|
|
export CXX=cl
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
#./configure --with-win32-vcpp --enable-port-e9-hack
|
|
|
|
#./configure --with-win32-vcpp --enable-debugger --enable-disasm --enable-instrumentation="instrument/example0"
|
|
|
|
#./configure --with-win32-vcpp --enable-debugger --enable-disasm
|
|
|
|
#./configure --with-win32-vcpp --enable-disasm
|
|
|
|
|
2002-03-21 05:50:06 +03:00
|
|
|
./configure --target=pentium-windows \
|
2003-11-26 01:42:21 +03:00
|
|
|
--enable-cdrom \
|
2002-03-21 05:50:06 +03:00
|
|
|
--enable-ne2000 \
|
|
|
|
--enable-vbe \
|
2003-11-26 01:42:21 +03:00
|
|
|
--enable-all-optimizations \
|
|
|
|
--disable-readline \
|
2004-08-18 15:52:25 +04:00
|
|
|
--enable-sb16=win \
|
|
|
|
--without-x
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
unset echo
|
2001-06-12 21:26:17 +04:00
|
|
|
|
2002-03-21 05:50:06 +03:00
|
|
|
# Fix up all makefiles so that nmake can handle them.
|
2001-06-12 21:26:17 +04:00
|
|
|
for i in `find . -name Makefile`; do
|
|
|
|
echo Removing curly brackets in $i for NMAKE.
|
|
|
|
mv $i $i.tmp
|
|
|
|
sed -e 's/{/(/g' -e 's/}/)/g' < $i.tmp > $i
|
|
|
|
rm -f $i.tmp
|
|
|
|
done
|