diff options
author | Adrien Plazas <kekun.plazas@laposte.net> | 2020-12-11 14:01:53 +0100 |
---|---|---|
committer | twinaphex <libretro@gmail.com> | 2021-03-12 08:42:23 +0100 |
commit | 53fd47011b98fccab4afa9b110008a80019c4a03 (patch) | |
tree | 5c9b03b35fe4c7a22f35aaf2a55523465d78daa1 /Makefile.libretro | |
parent | 8becda4ead4f1a62e764867c320c2cc6e0b2c29a (diff) |
Makefile.libretro: Add the install rule
Diffstat (limited to 'Makefile.libretro')
-rw-r--r-- | Makefile.libretro | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index b6f98b6..954fa22 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -44,6 +44,9 @@ core: $(OBJ) make $(target) OS=$(OS) CC=$(CC) CPU=$(ABI) cp -v $(target) $(libname) +install: $(libname) + install -Dp -m755 $(libname) $(DESTDIR)$(prefix)/lib/libretro/$(libname) + .PHONY: clean clean: |