2002-09-23 10:14:01 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
#
|
2002-10-08 11:09:58 +04:00
|
|
|
# These options are suggested by Bernd Korz, who maintains the BeOS
|
|
|
|
# port. He says that SDL works better than the native BeOS gui.
|
2002-09-23 10:14:01 +04:00
|
|
|
#
|
|
|
|
|
|
|
|
CC=gcc
|
|
|
|
CXX=$CC
|
2002-12-21 17:28:24 +03:00
|
|
|
CFLAGS="-Wall -O9 -mpentium -fomit-frame-pointer -pipe"
|
2002-09-23 10:14:01 +04:00
|
|
|
CXXFLAGS=$CFLAGS
|
|
|
|
|
|
|
|
export CC
|
|
|
|
export CXX
|
|
|
|
export CFLAGS
|
|
|
|
export CXXFLAGS
|
|
|
|
|
2002-10-08 11:09:58 +04:00
|
|
|
./configure --with-sdl \
|
2002-09-23 10:14:01 +04:00
|
|
|
--enable-cdrom \
|
2002-12-21 17:18:49 +03:00
|
|
|
--enable-ne2000 \
|
|
|
|
--enable-all-optimizations \
|
|
|
|
--enable-vbe
|