PUAE/build_linux_gtk.sh
rofl0r ba4263cd05 build script: remove make clean
1) it destroys the results from the previous configure run
2) because of that, configure is run a second time,
3) wasting our time, and
4) throwing away all our settings.
2013-11-14 04:57:54 +01:00

19 lines
414 B
Bash
Executable File

#!/bin/sh
# P-UAE
#
# 2006-2011 Mustafa TUFAN (aka GnoStiC/BRONX)
#
#
#
base=" --with-sdl --with-sdl-gl --with-sdl-gfx --with-alsa --enable-drvsnd "
cd32=" --enable-cd32 "
a600=" --enable-gayle "
scsi=" --enable-scsi-device --enable-ncr --enable-a2091 "
other=" --with-caps --enable-amax --enable-gccopt --enable-serial-port "
debug=""
#
#
./bootstrap.sh
./configure $debug $base $cd32 $a600 $scsi $other
make -j9