mirror of
https://github.com/libretro/libretro-super
synced 2024-11-24 08:11:48 +00:00
13 lines
277 B
Makefile
13 lines
277 B
Makefile
default: upgrade fetch build
|
|
|
|
upgrade:
|
|
@./libretro-upgrade.sh
|
|
|
|
fetch:
|
|
@./libretro-fetch.sh $(echo "retroarch"; grep -Eo '^[^ ]+' ./recipes/nintendo/libnx)
|
|
|
|
build:
|
|
@platform=libnx ./libretro-build.sh $(grep -Eo '^[^ ]+' ./recipes/nintendo/libnx)
|
|
|
|
.PHONY: default
|