Bochs/bochs/.conf.win32-vcpp
Volker Ruppert ee8a6d56ba - display libraries 'rfb' and 'nogui' added to the default MSVC workspace and
the shortcut script .conf.win32-vcpp
- updated list of include files for the gui directory in both workspaces
- added check for BX_WITH_NOGUI in nogui.cc (needed for MSVC)
- updated description of the siminterface implementation
2005-07-10 09:02:30 +00:00

29 lines
706 B
Bash
Executable File

#!/bin/sh
set echo
./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 \
--enable-cpp \
--with-win32 --with-rfb --with-nogui
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