Add a Makefile

This commit is contained in:
Rob Loach 2015-04-30 14:47:57 -04:00
parent cf4b40ce39
commit 01369cd581
3 changed files with 33 additions and 0 deletions

1
.gitignore vendored
View file

@ -44,6 +44,7 @@
/libretro-ppsspp/
/libretro-prboom/
/libretro-prosystem/
/libretro-puae/
/libretro-quicknes/
/libretro-remotejoy/
/libretro-scummvm/

15
Makefile Normal file
View file

@ -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

17
README.md Normal file
View file

@ -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