- added instructions how to update the online documentation
[bochs-mirror.git] / .conf.win32-vcpp
blob02c9ee776ab66ce8cd02602e189ff4031199453c
1 #!/bin/sh
3 set echo
5 ./configure --target=pentium-windows \
6 --enable-sb16 \
7 --enable-ne2000 \
8 --enable-all-optimizations \
9 --enable-cpu-level=6 \
10 --enable-x86-64 \
11 --enable-sse=2 \
12 --enable-pci \
13 --enable-acpi \
14 --enable-clgd54xx \
15 --enable-usb \
16 --enable-show-ips \
17 --disable-readline \
18 --without-x \
19 --enable-cpp \
20 --with-win32 --with-rfb --with-nogui
22 unset echo
24 # Fix up all makefiles so that nmake can handle them.
25 for i in `find . -name Makefile`; do
26 echo Removing curly brackets in $i for NMAKE.
27 mv $i $i.tmp
28 sed -e 's/{/(/g' -e 's/}/)/g' < $i.tmp > $i
29 rm -f $i.tmp
30 done