diff --git a/.gitignore b/.gitignore index d86c7fee..9d4362c2 100644 --- a/.gitignore +++ b/.gitignore @@ -44,6 +44,7 @@ /libretro-ppsspp/ /libretro-prboom/ /libretro-prosystem/ +/libretro-puae/ /libretro-quicknes/ /libretro-remotejoy/ /libretro-scummvm/ diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..9378cc0b --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +default: upgrade fetch build + +upgrade: + @./libretro-upgrade.sh + +fetch: + @./libretro-fetch.sh + +build: + @./libretro-build.sh + +install: + @./libretro-install.sh + +.PHONY: default \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 00000000..461c68e8 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Libretro Super Repository + +Fetch, build and install a number of [libretro](http://www.libretro.com/) projects. + +## Dependencies + +See the [Compilation](https://github.com/libretro/RetroArch/wiki#compilation) notes for prerequisites. + +## Usage + +### Download and Build + + make + +### Install + + make install