Bochs/bochs/.conf.macosx

19 lines
192 B
Bash

#!/bin/sh
# this sets up the compile for MacOS X
set echo
CC="cc"
CFLAGS="-pipe -g"
CXX="$CC"
CXXFLAGS="$CFLAGS"
export CC
export CXX
export CFLAGS
export CXXFLAGS
./configure
unset echo