Simplify Desmume build commands
This commit is contained in:
parent
87c7b3fee9
commit
8ff4a76ee4
|
@ -222,15 +222,8 @@ build_libretro_desmume()
|
||||||
if [ -d "libretro-desmume" ]; then
|
if [ -d "libretro-desmume" ]; then
|
||||||
echo "=== Building Desmume ==="
|
echo "=== Building Desmume ==="
|
||||||
cd libretro-desmume
|
cd libretro-desmume
|
||||||
if [ "$X86" = true ] || [ "$ARMV7" = true ]; then
|
${MAKE} -f Makefile.libretro platform=${FORMAT_COMPILER_TARGET} -j$JOBS clean || die "Failed to clean Desmume"
|
||||||
echo "=== Building Desmume with JIT recompiler ==="
|
${MAKE} -f Makefile.libretro platform=${FORMAT_COMPILER_TARGET} -j$JOBS || die "Failed to build Desmume"
|
||||||
${MAKE} -f Makefile.libretro platform=${FORMAT_COMPILER_TARGET} DESMUME_JIT=1 -j$JOBS clean || die "Failed to clean Desmume"
|
|
||||||
${MAKE} -f Makefile.libretro platform=${FORMAT_COMPILER_TARGET} DESMUME_JIT=1 -j$JOBS || die "Failed to build Desmume"
|
|
||||||
else
|
|
||||||
${MAKE} -f Makefile.libretro clean
|
|
||||||
${MAKE} -f Makefile.libretro platform=$FORMAT_COMPILER_TARGET -j$JOBS
|
|
||||||
fi
|
|
||||||
|
|
||||||
cp desmume_libretro${FORMAT}.${FORMAT_EXT} "$RARCH_DIST_DIR"
|
cp desmume_libretro${FORMAT}.${FORMAT_EXT} "$RARCH_DIST_DIR"
|
||||||
else
|
else
|
||||||
echo "Desmume not fetched, skipping ..."
|
echo "Desmume not fetched, skipping ..."
|
||||||
|
|
Loading…
Reference in New Issue