23 lines
420 B
Bash
Executable File
23 lines
420 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-dc2300-vlb-ide \
|
|
--enable-all-optimizations
|