2001-04-10 05:04:59 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This configure file should be used for Win32 systems using MS Visual C++ 5.0
|
|
|
|
# I first untar/gzip the source on a unix machine. Run this script
|
|
|
|
# to generate the Makefile's and config.h file. Then copy everything
|
|
|
|
# over to your Win32/Visual C++ system.
|
|
|
|
|
|
|
|
set echo
|
|
|
|
|
2001-10-07 17:32:01 +04:00
|
|
|
# bbd: I removed the explicit settings for CC,CFLAGS, etc.
|
|
|
|
# Just let configure choose the compiler on the configure platform.
|
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
|
|
|
|
|
2001-11-21 03:16:17 +03:00
|
|
|
./configure --with-win32-vcpp --enable-cdrom --enable-sb16=win --enable-ne2000 --enable-cpp --disable-readline
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
unset echo
|
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
|