dosbox-x/build-debug-no-mt32
Jonathan Campbell 5540838f1f whoops
2017-12-13 16:21:06 -08:00

13 lines
344 B
Bash
Executable File

#!/bin/bash
# prefer to compile against our own copy of SDL 1.x
echo Compiling our internal SDL 1.x
(cd vs2015/sdl && ./build-dosbox.sh) || exit 1
# now compile ourself
echo Compiling DOSBox-X
chmod +x configure
./configure --enable-core-inline --enable-debug=heavy --enable-avcodec --prefix=/usr --disable-mt32 || exit 1
make -j3 || exit 1