Change FCEUmm build path

This commit is contained in:
twinaphex 2012-11-24 06:13:24 +01:00
parent e44a5be82e
commit 82ca63138e
2 changed files with 4 additions and 4 deletions

View File

@ -152,8 +152,8 @@ build_libretro_fceu()
if [ -d "libretro-fceu" ]; then
echo "=== Building FCEU ==="
cd libretro-fceu
make CC=$CC CXX=$CXX platform=win -f Makefile.libretro-fceumm -j4 || die "Failed to build FCEU"
cp retro.dll libretro-git-fceu.dll
make CC=$CC CXX=$CXX platform=win -f src-fceumm/Makefile.libretro-fceumm -j4 || die "Failed to build FCEU"
cp src-fceumm/retro.dll libretro-git-fceu.dll
cd ..
else
echo "FCEU not fetched, skipping ..."

View File

@ -144,8 +144,8 @@ build_libretro_fceu()
if [ -d "libretro-fceu" ]; then
echo "=== Building FCEU ==="
cd libretro-fceu
make -f Makefile.libretro-fceumm -j4 || die "Failed to build FCEU"
cp libretro.so libretro-fceu.so
make -f src-fceumm/Makefile.libretro-fceumm -j4 || die "Failed to build FCEU"
cp src-fceumm/libretro.so libretro-fceu.so
cd ..
else
echo "FCEU not fetched, skipping ..."