Merge pull request #249 from RobLoach/makefile
Add a Makefile and a README.md
This commit is contained in:
commit
6cd6cb2646
|
@ -44,6 +44,7 @@
|
|||
/libretro-ppsspp/
|
||||
/libretro-prboom/
|
||||
/libretro-prosystem/
|
||||
/libretro-puae/
|
||||
/libretro-quicknes/
|
||||
/libretro-remotejoy/
|
||||
/libretro-scummvm/
|
||||
|
|
|
@ -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
|
|
@ -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
|
Loading…
Reference in New Issue