mirror of
https://github.com/libretro/libretro-super
synced 2025-02-21 03:41:01 +00:00
fix small issue with generic makefiles and additional arguments
This commit is contained in:
parent
a69ac32a6a
commit
bde4645079
@ -168,8 +168,8 @@ build_libretro_generic_makefile() {
|
||||
if [ -z "${NOCLEAN}" ];
|
||||
then
|
||||
echo "cleaning up..."
|
||||
echo "cleanup command: ${MAKE} -f ${MAKEFILE} platform=${PLATFORM} ${COMPILER} -j${JOBS} clean"
|
||||
${MAKE} -f ${MAKEFILE} platform=${PLATFORM} ${COMPILER} -j${JOBS} clean
|
||||
echo "cleanup command: ${MAKE} -f ${MAKEFILE} platform=${PLATFORM} ${COMPILER} -j${JOBS} ${ARGS} clean"
|
||||
${MAKE} -f ${MAKEFILE} platform=${PLATFORM} ${COMPILER} -j${JOBS} ${ARGS} clean
|
||||
if [ $? -eq 0 ];
|
||||
then
|
||||
echo success!
|
||||
@ -179,7 +179,7 @@ build_libretro_generic_makefile() {
|
||||
fi
|
||||
|
||||
echo "compiling..."
|
||||
if [ -z ${ARGS} ];
|
||||
if [ -z "${ARGS}" ]
|
||||
then
|
||||
echo "buid command: ${MAKE} -f ${MAKEFILE} platform=${PLATFORM} ${COMPILER} -j${JOBS}"
|
||||
${MAKE} -f ${MAKEFILE} platform=${PLATFORM} ${COMPILER} -j${JOBS}
|
||||
@ -229,7 +229,7 @@ build_libretro_generic_gl_makefile() {
|
||||
fi
|
||||
|
||||
echo "compiling..."
|
||||
if [ -z ${ARGS} ];
|
||||
if [ -z "${ARGS}" ];
|
||||
then
|
||||
echo "buid command: ${MAKE} -f ${MAKEFILE} platform=${PLATFORM} ${COMPILER} -j${JOBS}"
|
||||
${MAKE} -f ${MAKEFILE} platform=${PLATFORM} ${COMPILER} -j${JOBS}
|
||||
|
@ -1,3 +1,3 @@
|
||||
mame libretro-mame https://github.com/libretro/mame.git PROJECT YES GENERIC Makefile.libretro . TARGET=mame PTR64=1
|
||||
mame libretro-mame https://github.com/libretro/mame.git PROJECT YES GENERIC Makefile.libretro . TARGET=mess PTR64=1
|
||||
mame libretro-mame https://github.com/libretro/mame.git PROJECT NO GENERIC Makefile.libretro . TARGET=mame PTR64=1
|
||||
mame libretro-mame https://github.com/libretro/mame.git PROJECT YES GENERIC Makefile.libretro . TARGET=mess PTR64=1 PARTIAL=1
|
||||
mame libretro-mame https://github.com/libretro/mame.git PROJECT YES GENERIC Makefile.libretro . TARGET=ume PTR64=1
|
||||
|
Loading…
x
Reference in New Issue
Block a user