From 01369cd581f2c6ad5f9bba57d769dc6ef2868e7e Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Thu, 30 Apr 2015 14:47:57 -0400 Subject: [PATCH] Add a Makefile --- .gitignore | 1 + Makefile | 15 +++++++++++++++ README.md | 17 +++++++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 Makefile create mode 100644 README.md 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