mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-09 03:41:10 +08:00
13 lines
312 B
Bash
Executable File
13 lines
312 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 --prefix=/usr || exit 1
|
|
make -j3 || exit 1
|
|
|