Bochs/bochs/.conf.win32-vcpp
Volker Ruppert ed0669458c - removed obsolete configure option --with-win32-vcpp. The shortcut script
.conf.win32-vcpp already prepares the sources correctly for MSVC.
2005-03-28 10:26:14 +00:00

30 lines
658 B
Bash
Executable File

#!/bin/sh
set echo
#export CC=cl
#export CXX=cl
./configure --target=pentium-windows \
--enable-cdrom \
--enable-sb16 \
--enable-ne2000 \
--enable-vbe \
--enable-all-optimizations \
--enable-cpu-level=6 \
--enable-sse=1 \
--enable-pci \
--enable-clgd54xx \
--disable-readline \
--without-x
unset echo
# Fix up all makefiles so that nmake can handle them.
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