- update beos build scripts for this century

This commit is contained in:
Bryce Denney 2002-09-23 06:14:01 +00:00
parent 08ff8df002
commit 92b5efeab6
3 changed files with 21 additions and 36 deletions

21
bochs/.conf.beos Executable file
View File

@ -0,0 +1,21 @@
#!/bin/sh
#
# These are the steps I typically use to configure and compile Bochs,
# on an x86 BeOS machine, using gcc
#
CC=gcc
CXX=$CC
CFLAGS="-Wall -O2 -mpentium -fomit-frame-pointer -pipe"
CXXFLAGS=$CFLAGS
export CC
export CXX
export CFLAGS
export CXXFLAGS
./configure --with-beos \
--enable-cdrom \
--enable-ne2000 \
--enable-sb16=dummy

View File

@ -1,18 +0,0 @@
#!/bin/sh
#
# These are the steps I typically use to configure and compile Bochs,
# on an x86 BeOS R4 machine, using gcc
#
CC=gcc
CXX=$CC
CFLAGS="-Wall -O2 -m486 -fomit-frame-pointer -pipe"
CXXFLAGS=$CFLAGS
export CC
export CXX
export CFLAGS
export CXXFLAGS
./configure

View File

@ -1,18 +0,0 @@
#!/bin/sh
#
# These are the steps I typically use to configure and compile Bochs,
# on an x86 BeOS machine
#
CC=mwcc
CXX=$CC
CFLAGS="-w8 -O2"
CXXFLAGS=$CFLAGS
export CC
export CXX
export CFLAGS
export CXXFLAGS
./configure