mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 22:14:17 +00:00
Merge pull request #5207 from RobLoach/patch-13
Add a make install command to the video filters
This commit is contained in:
commit
8f93a6f379
@ -3,6 +3,8 @@ extra_flags :=
|
|||||||
use_neon := 0
|
use_neon := 0
|
||||||
release := release
|
release := release
|
||||||
DYLIB := so
|
DYLIB := so
|
||||||
|
PREFIX := /usr
|
||||||
|
INSTALLDIR := $(PREFIX)/lib/retroarch/filters/video
|
||||||
|
|
||||||
ifeq ($(platform),)
|
ifeq ($(platform),)
|
||||||
platform = unix
|
platform = unix
|
||||||
@ -89,3 +91,10 @@ clean:
|
|||||||
|
|
||||||
strip:
|
strip:
|
||||||
strip -s *.$(DYLIB)
|
strip -s *.$(DYLIB)
|
||||||
|
|
||||||
|
install:
|
||||||
|
mkdir -p $(DESTDIR)$(INSTALLDIR)
|
||||||
|
cp -t $(DESTDIR)$(INSTALLDIR) $(objects) *.filt
|
||||||
|
|
||||||
|
test-install:
|
||||||
|
DESTDIR=/tmp/build $(MAKE) install
|
||||||
|
Loading…
x
Reference in New Issue
Block a user