d899d8c7c2
anything, but they certainly weren't helping.
17 lines
223 B
Bash
17 lines
223 B
Bash
#!/bin/sh
|
|
|
|
# this sets up the compile for MacOS X
|
|
|
|
set echo
|
|
CFLAGS="-pipe -O2"
|
|
CXXFLAGS="$CFLAGS"
|
|
|
|
export CFLAGS
|
|
export CXXFLAGS
|
|
|
|
./configure --enable-cdrom \
|
|
--enable-vbe \
|
|
--enable-all-optimizations
|
|
|
|
unset echo
|