Removed custom build script and finalized libnx Makefile

This commit is contained in:
Mitchell Lehman 2020-11-14 12:26:56 -05:00
parent 62a9ed7227
commit 58e51b5a8a
2 changed files with 1 additions and 25 deletions

View File

@ -7,6 +7,6 @@ fetch:
@./libretro-fetch.sh $(echo "retroarch"; grep -Eo '^[^ ]+' ./recipes/nintendo/libnx)
build:
@./libretro-build-libnx.sh
@platform=libnx ./libretro-build.sh $(grep -Eo '^[^ ]+' ./recipes/nintendo/libnx)
.PHONY: default

View File

@ -1,24 +0,0 @@
#! /usr/bin/env bash
# vim: set ts=3 sw=3 noet ft=sh : bash
SCRIPT="${0#./}"
BASE_DIR="${SCRIPT%/*}"
WORKDIR="$PWD"
if [ "$BASE_DIR" = "$SCRIPT" ]; then
BASE_DIR="$WORKDIR"
else
if [[ "$0" != /* ]]; then
# Make the path absolute
BASE_DIR="$WORKDIR/$BASE_DIR"
fi
fi
if [[ -z "$1" ]]; then
WANT_CORES=$(grep -Eo '^[^ ]+' ${BASE_DIR}/recipes/nintendo/libnx)
else
WANT_CORES="$@"
fi
platform=libnx ${BASE_DIR}/libretro-build.sh ${WANT_CORES}