b601437f2d
Modified Files: .conf.beos .conf.everything .conf.linux .conf.macosx .conf.win32-cygwin .conf.win32-vcpp
22 lines
391 B
Bash
Executable File
22 lines
391 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# These options are suggested by Bernd Korz, who maintains the BeOS
|
|
# port. He says that SDL works better than the native BeOS gui.
|
|
#
|
|
|
|
CC=gcc
|
|
CXX=$CC
|
|
CFLAGS="-Wall -O9 -mpentium -fomit-frame-pointer -pipe"
|
|
CXXFLAGS=$CFLAGS
|
|
|
|
export CC
|
|
export CXX
|
|
export CFLAGS
|
|
export CXXFLAGS
|
|
|
|
./configure --with-sdl \
|
|
--enable-cdrom \
|
|
--enable-sb16=dummy \
|
|
--enable-all-optimizations
|