Bochs/bochs/.conf.macosx

19 lines
192 B
Plaintext
Raw Normal View History

2001-09-27 07:56:36 +04:00
#!/bin/sh
2001-12-11 16:42:23 +03:00
# this sets up the compile for MacOS X
2001-09-27 07:56:36 +04:00
set echo
CC="cc"
CFLAGS="-pipe -g"
2001-09-27 07:56:36 +04:00
CXX="$CC"
CXXFLAGS="$CFLAGS"
export CC
export CXX
export CFLAGS
export CXXFLAGS
./configure
2001-09-27 07:56:36 +04:00
unset echo